From: Max Reitz Date: Fri, 6 Sep 2013 14:51:03 +0000 (+0200) Subject: qemu-img create: Emit filename on error X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~524^2~3^2~158^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b70d8c237a0e5e829474c3a12c8783893c4e470e;p=sdk%2Femulator%2Fqemu.git qemu-img create: Emit filename on error bdrv_img_create generally does not emit the target filename, although this is pretty important information. Therefore, prepend its error message with the output filename (if an error occurs). Signed-off-by: Max Reitz --- diff --git a/qemu-img.c b/qemu-img.c index ccb0468d94..6a1ba697c5 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -412,7 +412,7 @@ static int img_create(int argc, char **argv) bdrv_img_create(filename, fmt, base_filename, base_fmt, options, img_size, BDRV_O_FLAGS, &local_err, quiet); if (error_is_set(&local_err)) { - error_report("%s", error_get_pretty(local_err)); + error_report("%s: %s", filename, error_get_pretty(local_err)); error_free(local_err); return 1; }