diff options
author | Sam Spilsbury <sam.spilsbury@canonical.com> | 2011-06-13 21:47:43 +0800 |
---|---|---|
committer | Sam Spilsbury <sam.spilsbury@canonical.com> | 2011-06-13 21:47:43 +0800 |
commit | 694e7246065269b12319441cb1471f4b1d6f181a (patch) | |
tree | 2a46cd69f80f35b7c019a5277d556d49ce24c1ce | |
parent | 49f88dbb46ea808bd2be03c1b97c1dec44d66cc6 (diff) | |
download | compositionkit-694e7246065269b12319441cb1471f4b1d6f181a.tar.gz compositionkit-694e7246065269b12319441cb1471f4b1d6f181a.tar.bz2 |
Remove unecessary /n
-rw-r--r-- | ckservice/ckservice-main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ckservice/ckservice-main.c b/ckservice/ckservice-main.c index 698b530..f167aec 100644 --- a/ckservice/ckservice-main.c +++ b/ckservice/ckservice-main.c @@ -455,11 +455,11 @@ handle_method_call (GDBusConnection *connection, } else { - g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No shader %s for id %i\n", string, id); + g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No shader %s for id %i", string, id); } } { - g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "ID %i not valid for shader %s\n", id, string); + g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "ID %i not valid for shader %s", id, string); } if (string) @@ -491,11 +491,11 @@ handle_method_call (GDBusConnection *connection, } else { - g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No shader %s for id %i\n", shader_name, id); + g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No shader %s for id %i", shader_name, id); } } { - g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "ID %i not valid for shader %s\n", id, shader_name); + g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "ID %i not valid for shader %s", id, shader_name); } if (shader_name) |