summaryrefslogtreecommitdiff
path: root/numa.c
diff options
context:
space:
mode:
authorIshani Chugh <chugh.ishani@research.iiit.ac.in>2017-04-13 21:44:39 +0530
committerMichael Tokarev <mjt@tls.msk.ru>2017-05-07 09:57:51 +0300
commitd0e31a105e2a353a2ac148c8f0044cfa8939f645 (patch)
tree4d24e3e727c8083c5f9333da9f7f106e0d87a312 /numa.c
parent12a95f320a36ef66f724a49bb05e4fb553ac5dbe (diff)
downloadqemu-d0e31a105e2a353a2ac148c8f0044cfa8939f645.tar.gz
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 'numa.c')
-rw-r--r--numa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/numa.c b/numa.c
index 6fc2393ddd..39b743bd94 100644
--- a/numa.c
+++ b/numa.c
@@ -174,7 +174,7 @@ static void numa_node_parse(NumaNodeOptions *node, QemuOpts *opts, Error **errp)
}
if (node->has_mem && node->has_memdev) {
- error_setg(errp, "qemu: cannot specify both mem= and memdev=");
+ error_setg(errp, "cannot specify both mem= and memdev=");
return;
}
@@ -182,7 +182,7 @@ static void numa_node_parse(NumaNodeOptions *node, QemuOpts *opts, Error **errp)
have_memdevs = node->has_memdev;
}
if (node->has_memdev != have_memdevs) {
- error_setg(errp, "qemu: memdev option must be specified for either "
+ error_setg(errp, "memdev option must be specified for either "
"all or no nodes");
return;
}