Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2012-12-23 12:02:20 (GMT)
committer Daniel Drake <dsd@laptop.org>2012-12-23 12:02:20 (GMT)
commit14a11bce1b1aeb926d8d4a4d8d4411ce93612813 (patch)
tree45b9438c881af3191217ea7f9f45539bd924179e
parent4d71a3c391f53cefdb1abfceac698d1f8d68a49c (diff)
zhashfs: initialise a variable that might need it
Leftover from last commit.
-rw-r--r--bin/zhashfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/zhashfs.c b/bin/zhashfs.c
index c52c045..44f9c60 100644
--- a/bin/zhashfs.c
+++ b/bin/zhashfs.c
@@ -151,7 +151,7 @@ static long read_extents(FILE *infile)
{
int i;
struct fiemap *fiemap = read_fiemap(fileno(infile));
- long ret;
+ long ret = 0;
LTC_ARGCHK(fiemap != NULL);