mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
nvmecontrol: fix build on amd64/clang
Broken by: 329824 Sponsored by: Spectra Logic Corp
This commit is contained in:
parent
0127914caa
commit
deeec7728b
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ print_controller(struct nvme_controller_data *cdata)
|
|||
if (cdata->mdts == 0)
|
||||
printf("Unlimited\n");
|
||||
else
|
||||
printf("%ld\n", PAGE_SIZE * (1 << cdata->mdts));
|
||||
printf("%d\n", PAGE_SIZE * (1 << cdata->mdts));
|
||||
printf("Controller ID: 0x%02x\n", cdata->ctrlr_id);
|
||||
printf("\n");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue