[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 1/5] qemu-img: Omit error_report() after img_open()
From: |
Kevin Wolf |
Subject: |
[Qemu-devel] [PULL 1/5] qemu-img: Omit error_report() after img_open() |
Date: |
Mon, 10 Nov 2014 11:57:08 +0100 |
From: Max Reitz <address@hidden>
img_open() already prints an error if the operation failed, so there
should not be another error_report() afterwards.
Signed-off-by: Max Reitz <address@hidden>
Reviewed-by: Markus Armbruster <address@hidden>
Signed-off-by: Kevin Wolf <address@hidden>
---
qemu-img.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/qemu-img.c b/qemu-img.c
index 66a7eb4..a42335c 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -1126,7 +1126,6 @@ static int img_compare(int argc, char **argv)
blk1 = img_open("image_1", filename1, fmt1, flags, true, quiet);
if (!blk1) {
- error_report("Can't open file %s", filename1);
ret = 2;
goto out3;
}
@@ -1134,7 +1133,6 @@ static int img_compare(int argc, char **argv)
blk2 = img_open("image_2", filename2, fmt2, flags, true, quiet);
if (!blk2) {
- error_report("Can't open file %s", filename2);
ret = 2;
goto out2;
}
@@ -1482,7 +1480,6 @@ static int img_convert(int argc, char **argv)
true, quiet);
g_free(id);
if (!blk[bs_i]) {
- error_report("Could not open '%s'", argv[optind + bs_i]);
ret = -1;
goto out;
}
@@ -2962,7 +2959,6 @@ static int img_amend(int argc, char **argv)
blk = img_open("image", filename, fmt, flags, true, quiet);
if (!blk) {
- error_report("Could not open image '%s'", filename);
ret = -1;
goto out;
}
--
1.8.3.1
- [Qemu-devel] [PULL 0/5] Block patches for 2.2, Kevin Wolf, 2014/11/10
- [Qemu-devel] [PULL 2/5] block: Propagate error in bdrv_img_create(), Kevin Wolf, 2014/11/10
- [Qemu-devel] [PULL 5/5] block/vdi: Limit maximum size even futher, Kevin Wolf, 2014/11/10
- [Qemu-devel] [PULL 3/5] iotests: Add test for non-existing backing file, Kevin Wolf, 2014/11/10
- [Qemu-devel] [PULL 1/5] qemu-img: Omit error_report() after img_open(),
Kevin Wolf <=
- [Qemu-devel] [PULL 4/5] qapi: Complete BlkdebugEvent, Kevin Wolf, 2014/11/10
- Re: [Qemu-devel] [PULL 0/5] Block patches for 2.2, Peter Maydell, 2014/11/10