diff options
Diffstat (limited to 'error_utils.c')
-rw-r--r-- | error_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/error_utils.c b/error_utils.c index 2c48aba..ab44893 100644 --- a/error_utils.c +++ b/error_utils.c @@ -211,7 +211,7 @@ void format_error_text (gchar **response, int error_type, char *in) }
- *response = g_strdup_printf("%d, \"%s; %s\"\n", error_type, prefix, in);
+ *response = g_strdup_printf("%d, \"%s; %s\"", error_type, prefix, in);
g_free(prefix);
}
|