summaryrefslogtreecommitdiffstats
path: root/examples/display-tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/display-tree.c')
-rw-r--r--examples/display-tree.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/display-tree.c b/examples/display-tree.c
index f5bddb2..b9ea75f 100644
--- a/examples/display-tree.c
+++ b/examples/display-tree.c
@@ -11,6 +11,7 @@
* selected attributes for each component.
*/
#include <stdio.h>
+#include <inttypes.h>
#include <libnvme.h>
int main()
@@ -34,7 +35,7 @@ int main()
nvme_subsystem_get_nqn(s));
nvme_subsystem_for_each_ns_safe(s, n, _n) {
- printf("%c |-- %s lba size:%d lba max:%lu\n",
+ printf("%c |-- %s lba size:%d lba max:%" PRIu64 "\n",
_s ? '|' : ' ',
nvme_ns_get_name(n),
nvme_ns_get_lba_size(n),
@@ -50,7 +51,7 @@ int main()
nvme_ctrl_get_state(c));
nvme_ctrl_for_each_ns_safe(c, n, _n)
- printf("%c %c %c-- %s lba size:%d lba max:%lu\n",
+ printf("%c %c %c-- %s lba size:%d lba max:%" PRIu64 "\n",
_s ? '|' : ' ', _c ? '|' : ' ',
_n ? '|' : '`',
nvme_ns_get_name(n),