]> xenbits.xensource.com Git - libvirt.git/commitdiff
Remove newline from end of error message in virnodesuspend.c
authorDaniel P. Berrange <berrange@redhat.com>
Wed, 18 Jul 2012 10:52:05 +0000 (11:52 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Wed, 18 Jul 2012 13:01:23 +0000 (14:01 +0100)
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
src/util/virnodesuspend.c

index 7e37118b49b3566929ebde71cdba32e9d529ea19..c6beccebe7bf619f499692fc804a7f74a1440f2f 100644 (file)
@@ -240,7 +240,7 @@ int nodeSuspendForDuration(virConnectPtr conn ATTRIBUTE_UNUSED,
 
     if (virThreadCreate(&thread, false, virNodeSuspend, (void *)cmdString) < 0) {
         virNodeSuspendError(VIR_ERR_INTERNAL_ERROR, "%s",
-                        _("Failed to create thread to suspend the host\n"));
+                        _("Failed to create thread to suspend the host"));
         goto cleanup;
     }