aboutsummaryrefslogtreecommitdiff
path: root/sbin/nvmecontrol/modules
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2022-10-06 18:56:11 +0000
committerCy Schubert <cy@FreeBSD.org>2022-10-06 18:58:16 +0000
commit142c3c7fefed51c0766c24e776a773fec7557050 (patch)
treeeb17b05d022ffcb000708fd74c2699c53f17a316 /sbin/nvmecontrol/modules
parente4e91353c62e2af425061a4e56e1f24dcca2dd0f (diff)
downloadsrc-142c3c7fefed51c0766c24e776a773fec7557050.tar.gz
src-142c3c7fefed51c0766c24e776a773fec7557050.zip
Diffstat (limited to 'sbin/nvmecontrol/modules')
-rw-r--r--sbin/nvmecontrol/modules/samsung/samsung.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/nvmecontrol/modules/samsung/samsung.c b/sbin/nvmecontrol/modules/samsung/samsung.c
index 75d8e1064c93..497acf46e01c 100644
--- a/sbin/nvmecontrol/modules/samsung/samsung.c
+++ b/sbin/nvmecontrol/modules/samsung/samsung.c
@@ -146,8 +146,8 @@ print_samsung_extended_smart(const struct nvme_controller_data *cdata __unused,
print_temp(le16dec(&temp->ct));
printf(" Capacitor Health : %u\n", le16dec(&temp->ch));
printf(" Reserved Erase Block Count : %u\n", le32dec(&temp->luurb));
- printf(" Read Reclaim Count : %ju\n", le64dec(&temp->rrc));
- printf(" Lifetime Uncorrectable ECC Count : %ju\n", le64dec(&temp->lueccc));
+ printf(" Read Reclaim Count : %ju\n", (uintmax_t) le64dec(&temp->rrc));
+ printf(" Lifetime Uncorrectable ECC Count : %ju\n", (uintmax_t) le64dec(&temp->lueccc));
printf(" Reallocated Block Count : %u\n", le32dec(&temp->lurb));
printf(" Power on Hours : %s\n",
uint128_to_str(to128(temp->poh), cbuf, sizeof(cbuf)));