diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2010-12-10 12:19:49 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2010-12-10 12:19:49 +0000 |
commit | d72815578f7b8fea9702902d8562430e8a007a46 (patch) | |
tree | 57815056a0cf762e5013c8ac973394e27a352d81 /daemon | |
parent | 8dafeaa477f9e3d2fde827b8de4b44d66b661b69 (diff) | |
download | libguestfs-d72815578f7b8fea9702902d8562430e8a007a46.tar.gz libguestfs-d72815578f7b8fea9702902d8562430e8a007a46.tar.xz libguestfs-d72815578f7b8fea9702902d8562430e8a007a46.zip |
Remove several unused local variables.
(Revealed by compiling under Debian where this is a warning).
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/mkfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/mkfs.c b/daemon/mkfs.c index 911fad3d..cc0ead18 100644 --- a/daemon/mkfs.c +++ b/daemon/mkfs.c @@ -36,7 +36,7 @@ int do_mkfs_opts (const char *fstype, const char *device, int blocksize) { const char *argv[MAX_ARGS]; - size_t i = 0, j; + size_t i = 0; char blocksize_str[32]; int r; char *err; |