aboutsummaryrefslogtreecommitdiff
path: root/debugfs/unused.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2003-12-07 01:28:50 -0500
committerTheodore Ts'o <tytso@mit.edu>2003-12-07 01:28:50 -0500
commit544349270e4c74a6feb971123884a8cf5052a7ee (patch)
tree7c3c483148953f1cd5eadc9cf5eb6f7faabc31c5 /debugfs/unused.c
parent3de085dd4109e6a7049dd6b85abf0313167cab5b (diff)
downloade2fsprogs-544349270e4c74a6feb971123884a8cf5052a7ee.tar.gz
Fix gcc -Wall nitpicks
Diffstat (limited to 'debugfs/unused.c')
-rw-r--r--debugfs/unused.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debugfs/unused.c b/debugfs/unused.c
index c055db7d..d0a51621 100644
--- a/debugfs/unused.c
+++ b/debugfs/unused.c
@@ -24,11 +24,11 @@ extern char *optarg;
#include "debugfs.h"
-void do_dump_unused(int argc, char **argv)
+void do_dump_unused(int argc EXT2FS_ATTR((unused)), char **argv)
{
unsigned long blk;
unsigned char buf[32768];
- int i;
+ unsigned int i;
errcode_t retval;
for (blk=current_fs->super->s_first_data_block;