aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2021-06-15 21:28:45 -0700
committerEric Biggers <ebiggers@google.com>2021-06-15 22:11:52 -0700
commit6055c03938f24805e80de2cfb2240c9f80c5e9fa (patch)
tree0e2f70547aa64e24a36abd4f024f579739816939
parent7d9ef39c6c7e8e7f373373c5f170a6b9e6d338c7 (diff)
downloade2fsprogs-6055c03938f24805e80de2cfb2240c9f80c5e9fa.tar.gz
libext2fs: fix a -Wunused-label warning
Remove a label which isn't used. Change-Id: I7f5498b40cc8a63d3e630e6481e8136718b8b143
-rw-r--r--lib/ext2fs/unix_io.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/ext2fs/unix_io.c b/lib/ext2fs/unix_io.c
index 64eee342..3bb8d238 100644
--- a/lib/ext2fs/unix_io.c
+++ b/lib/ext2fs/unix_io.c
@@ -329,7 +329,6 @@ success_unlock:
error_unlock:
mutex_unlock(data, BOUNCE_MTX);
-error_out:
if (actual >= 0 && actual < size)
memset((char *) buf+actual, 0, size-actual);
if (channel->read_error)