From 881990a2e440d58d2c1d070e9005225f56d21260 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Tue, 31 Jan 2006 00:43:50 +0000 Subject: [PATCH 1/1] Fix printing of size of reiserfs filesystem. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=318230 Signed-off-by: Neil Brown --- util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util.c b/util.c index abc576ed..26254c08 100644 --- a/util.c +++ b/util.c @@ -229,7 +229,7 @@ int check_reiser(int fd, char *name) * */ unsigned char sb[1024]; - int size; + unsigned long size; if (lseek(fd, 64*1024, 0) != 64*1024) return 0; if (read(fd, sb, 1024) != 1024) @@ -239,7 +239,7 @@ int check_reiser(int fd, char *name) return 0; fprintf(stderr, Name ": %s appears to contain a reiserfs file system\n",name); size = sb[0]|(sb[1]|(sb[2]|sb[3]<<8)<<8)<<8; - fprintf(stderr, " size = %dK\n", size*4); + fprintf(stderr, " size = %luK\n", size*4); return 1; } -- 2.39.2