diff options
author | Frederic Cambus <fcambus@cvs.openbsd.org> | 2017-07-29 21:14:57 +0000 |
---|---|---|
committer | Frederic Cambus <fcambus@cvs.openbsd.org> | 2017-07-29 21:14:57 +0000 |
commit | 48926c1b9496e99214c6563684bb7ff0e19e039c (patch) | |
tree | 4bd7bd84c2ad8bd5bfccdf57221d0e7d1bb5cf51 /sbin | |
parent | b6886a6f5760a87622d9c15335903f44c218db80 (diff) |
Remove erroneous h length modifier, the argument has type 'int'.
OK deraadt@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fsdb/fsdbutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fsdb/fsdbutil.c b/sbin/fsdb/fsdbutil.c index eebe7e2cf72..b0c6fe2c80a 100644 --- a/sbin/fsdb/fsdbutil.c +++ b/sbin/fsdb/fsdbutil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fsdbutil.c,v 1.17 2015/01/20 18:22:21 deraadt Exp $ */ +/* $OpenBSD: fsdbutil.c,v 1.18 2017/07/29 21:14:56 fcambus Exp $ */ /* $NetBSD: fsdbutil.c,v 1.5 1996/09/28 19:30:37 christos Exp $ */ /*- @@ -148,7 +148,7 @@ printstat(const char *cp, ino_t inum, union dinode *dp) else printf("GID=%u ", DIP(dp, di_gid)); - printf("LINKCNT=%hd FLAGS=%#x BLKCNT=%x GEN=%x\n", DIP(dp, di_nlink), + printf("LINKCNT=%d FLAGS=%#x BLKCNT=%x GEN=%x\n", DIP(dp, di_nlink), DIP(dp, di_flags), (unsigned)DIP(dp, di_blocks), DIP(dp, di_gen)); } |