summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2020-06-24 05:46:07 +0000
committerotto <otto@openbsd.org>2020-06-24 05:46:07 +0000
commit342ef31aa933482941a09fddec51e63e4fa4094e (patch)
tree9bc5069eb0f2da307f03f0ab238c25fbe923e714
parentkernel no longer has to be placed into the boot area, because (diff)
downloadwireguard-openbsd-342ef31aa933482941a09fddec51e63e4fa4094e.tar.xz
wireguard-openbsd-342ef31aa933482941a09fddec51e63e4fa4094e.zip
Fix botched format string in previous commit as spotted by robert@
-rw-r--r--sbin/clri/clri.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/clri/clri.c b/sbin/clri/clri.c
index f1306bd095f..f6ef2def3ee 100644
--- a/sbin/clri/clri.c
+++ b/sbin/clri/clri.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: clri.c,v 1.21 2020/06/20 07:49:04 otto Exp $ */
+/* $OpenBSD: clri.c,v 1.22 2020/06/24 05:46:07 otto Exp $ */
/* $NetBSD: clri.c,v 1.19 2005/01/20 15:50:47 xtraeme Exp $ */
/*
@@ -121,7 +121,7 @@ main(int argc, char *argv[])
while (*++argv) {
/* get the inode number. */
inonum = strtonum(*argv, 1, imax, NULL);
- (void)printf("clearing %u\n", inonum);
+ (void)printf("clearing %llu\n", inonum);
/* read in the appropriate block. */
offset = ino_to_fsba(sbp, inonum); /* inode to fs blk */