summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Lackorzynski <adam@os.inf.tu-dresden.de>2011-04-08 08:48:42 +0200
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2011-04-09 10:40:46 +0100
commitf95857b34d284895816f2091ef4fc6d9460ebf3b (patch)
treeaa20ed07defbf15e0874312d4342ac0c3c57c356
parent6957785773e8a3cc8bd51f0e3172eaccbbaa5f3a (diff)
downloadqemu-f95857b34d284895816f2091ef4fc6d9460ebf3b.tar.gz
multiboot: Quote filename in error message
Quote filename in error message to spot possible whitespace character in the filename and make error message more meaningful. Signed-off-by: Adam Lackorzynski <adam@os.inf.tu-dresden.de> Acked-by: Alexander Graf <agraf@suse.de> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
-rw-r--r--hw/multiboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/multiboot.c b/hw/multiboot.c
index 0d2bfb4973..394ed0136e 100644
--- a/hw/multiboot.c
+++ b/hw/multiboot.c
@@ -272,7 +272,7 @@ int load_multiboot(void *fw_cfg,
mb_debug("multiboot loading module: %s\n", initrd_filename);
mb_mod_length = get_image_size(initrd_filename);
if (mb_mod_length < 0) {
- fprintf(stderr, "failed to get %s image size\n", initrd_filename);
+ fprintf(stderr, "Failed to open file '%s'\n", initrd_filename);
exit(1);
}