diff options
author | Andreas Dilger <adilger@whamcloud.com> | 2011-09-24 12:59:31 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-09-24 13:00:24 -0400 |
commit | 6b56f3d92d08806ab415e8fd883480f7f9c148e8 (patch) | |
tree | aab94e809cda4d95c1bc81712dd1a8859d65b942 /lib/quota | |
parent | 9d9a53e651fa877eb4f9df0bfd97fbcc5f514293 (diff) | |
download | e2fsprogs-6b56f3d92d08806ab415e8fd883480f7f9c148e8.tar.gz |
misc: quiet minor compiler errors
Several compiler errors are quieted:
- zero-length gnu_printf format string
- unused variable
- uninitalized variable (though it isn't actually used for anything)
- fixed a bug in ext2fs_stat() if stat64() does not exist
Signed-off-by: Andreas Dilger <adilger@whamcloud.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'lib/quota')
-rw-r--r-- | lib/quota/dqblk_v2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/quota/dqblk_v2.h b/lib/quota/dqblk_v2.h index ca07902c..18055c69 100644 --- a/lib/quota/dqblk_v2.h +++ b/lib/quota/dqblk_v2.h @@ -32,7 +32,7 @@ struct v2_mem_dqinfo { }; struct v2_mem_dqblk { - loff_t dqb_off; /* Offset of dquot in file */ + long long dqb_off; /* Offset of dquot in file */ }; struct quotafile_ops; /* Will be defined later in quotaio.h */ |