summaryrefslogtreecommitdiffstats
path: root/discover/devmapper.c
diff options
context:
space:
mode:
authorGeoff Levand <geoff@infradead.org>2018-01-06 00:47:39 +0000
committerSamuel Mendoza-Jonas <sam@mendozajonas.com>2018-01-10 13:34:54 +1100
commit41caf09e98b14e34830f524405efc1bdd4087365 (patch)
tree51c4ff3af3a20d41277b5b2318d141713cfbaa46 /discover/devmapper.c
parentc462aa6f8e4658ed23df16bc9e1822e384744e53 (diff)
downloadtalos-petitboot-41caf09e98b14e34830f524405efc1bdd4087365.tar.gz
talos-petitboot-41caf09e98b14e34830f524405efc1bdd4087365.zip
printf: Fix format type warnings
Fixes build warnings like these when building 32 bit programs: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument has type ‘uint64_t’ Signed-off-by: Geoff Levand <geoff@infradead.org> Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Diffstat (limited to 'discover/devmapper.c')
-rw-r--r--discover/devmapper.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/discover/devmapper.c b/discover/devmapper.c
index 2b28e0f..d8445e6 100644
--- a/discover/devmapper.c
+++ b/discover/devmapper.c
@@ -2,6 +2,7 @@
#include <types/types.h>
#include <log/log.h>
#include <errno.h>
+#include <inttypes.h>
#include <string.h>
#include <sys/types.h>
@@ -231,7 +232,7 @@ static int run_create_task(const char *dm_name, const struct target *target)
struct dm_task *task;
uint32_t cookie;
- pb_debug("%s: %lu %lu '%s' '%s'\n", __func__,
+ pb_debug("%s: %" PRIu64 " %" PRIu64 " '%s' '%s'\n", __func__,
target->start_sector, target->end_sector,
target->ttype, target->params);
OpenPOWER on IntegriCloud