diff options
| author | Peter Maydell | 2016-08-08 14:25:35 +0200 |
|---|---|---|
| committer | Peter Maydell | 2016-08-08 14:25:35 +0200 |
| commit | f5edfcfafbc0fbe2e2270b9fbcbf9009399bc27a (patch) | |
| tree | 2cb2e479753c9b4a8bccc181e602fb5a7ed68727 /hw/ppc/spapr_cpu_core.c | |
| parent | Merge remote-tracking branch 'remotes/elmarco/tags/leaks-for-2.7-pull-request... (diff) | |
| parent | error: Fix error_printf() calls lacking newlines (diff) | |
| download | qemu-f5edfcfafbc0fbe2e2270b9fbcbf9009399bc27a.tar.gz qemu-f5edfcfafbc0fbe2e2270b9fbcbf9009399bc27a.tar.xz qemu-f5edfcfafbc0fbe2e2270b9fbcbf9009399bc27a.zip | |
Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2016-08-08' into staging
Error reporting patches for 2016-08-08
# gpg: Signature made Mon 08 Aug 2016 08:14:49 BST
# gpg: using RSA key 0x3870B400EB918653
# gpg: Good signature from "Markus Armbruster <armbru@redhat.com>"
# gpg: aka "Markus Armbruster <armbru@pond.sub.org>"
# Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867 4E5F 3870 B400 EB91 8653
* remotes/armbru/tags/pull-error-2016-08-08:
error: Fix error_printf() calls lacking newlines
vfio: Use error_report() instead of error_printf() for errors
checkpatch: Fix newline detection in error_setg() & friends
error: Strip trailing '\n' from error string arguments (again)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/ppc/spapr_cpu_core.c')
| -rw-r--r-- | hw/ppc/spapr_cpu_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/spapr_cpu_core.c b/hw/ppc/spapr_cpu_core.c index 704803ac23..716f7c44cd 100644 --- a/hw/ppc/spapr_cpu_core.c +++ b/hw/ppc/spapr_cpu_core.c @@ -231,7 +231,7 @@ void spapr_core_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev, } if (cc->core_id % smp_threads) { - error_setg(&local_err, "invalid core id %d\n", cc->core_id); + error_setg(&local_err, "invalid core id %d", cc->core_id); goto out; } |
