From: Sami Kerola Date: Sat, 3 Jan 2015 09:20:04 +0000 (+0000) Subject: lslocks: fix type warning X-Git-Tag: v2.26-rc1~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64a265bf8a472a8f42f3da3de168e6b8224847b2;p=thirdparty%2Futil-linux.git lslocks: fix type warning misc-utils/lslocks.c:229:2: warning: format '%x' expects argument of type 'unsigned int *', but argument 3 has type 'int *' [-Wformat=] Reference: http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/fs/locks.c?id=5e0f872c7d7e371fbdf09e864eddd24bddfda8fe#n2533 Signed-off-by: Sami Kerola --- diff --git a/misc-utils/lslocks.c b/misc-utils/lslocks.c index 6dac1879f8..9072d60277 100644 --- a/misc-utils/lslocks.c +++ b/misc-utils/lslocks.c @@ -223,7 +223,7 @@ out: */ static ino_t get_dev_inode(char *str, dev_t *dev) { - int maj = 0, min = 0; + unsigned int maj = 0, min = 0; ino_t inum = 0; sscanf(str, "%02x:%02x:%ju", &maj, &min, &inum);