diff options
author | Ishani Chugh | 2017-04-13 18:14:39 +0200 |
---|---|---|
committer | Michael Tokarev | 2017-05-07 08:57:51 +0200 |
commit | d0e31a105e2a353a2ac148c8f0044cfa8939f645 (patch) | |
tree | 4d24e3e727c8083c5f9333da9f7f106e0d87a312 /hw/nios2 | |
parent | Merge remote-tracking branch 'kwolf/tags/for-upstream' into staging (diff) | |
download | qemu-d0e31a105e2a353a2ac148c8f0044cfa8939f645.tar.gz qemu-d0e31a105e2a353a2ac148c8f0044cfa8939f645.tar.xz qemu-d0e31a105e2a353a2ac148c8f0044cfa8939f645.zip |
Remove reduntant qemu: from error functions
This patch removes redundant "qemu:" from error functions. The link to the bitesized task is:
http://wiki.qemu-project.org/Contribute/BiteSizedTasks#Error_checking
Signed-off-by: Ishani Chugh <chugh.ishani@research.iiit.ac.in>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'hw/nios2')
-rw-r--r-- | hw/nios2/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/nios2/boot.c b/hw/nios2/boot.c index e0a9aff2f4..2b31f5b844 100644 --- a/hw/nios2/boot.c +++ b/hw/nios2/boot.c @@ -197,7 +197,7 @@ void nios2_load_kernel(Nios2CPU *cpu, hwaddr ddr_base, ram_size - initrd_offset); } if (initrd_size < 0) { - error_report("qemu: could not load initrd '%s'", + error_report("could not load initrd '%s'", initrd_filename); exit(EXIT_FAILURE); } |