diff options
author | Matthias Clasen <mclasen@redhat.com> | 2016-02-28 11:06:25 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-02-28 12:23:12 -0500 |
commit | bbd94b5a9ffc83569c771d81fa07457dfd61d20d (patch) | |
tree | e5a654ece274c67951fb0a8cb39d812256884aad /gtk/gtkmountoperation-x11.c | |
parent | 72b40266bde69effa75fabae960748c2c7832a4d (diff) | |
download | gtk+-bbd94b5a9ffc83569c771d81fa07457dfd61d20d.tar.gz |
gtk: Strip newlines from g_warning and g_error
g_logv adds one for us already.
Diffstat (limited to 'gtk/gtkmountoperation-x11.c')
-rw-r--r-- | gtk/gtkmountoperation-x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkmountoperation-x11.c b/gtk/gtkmountoperation-x11.c index 4ecef653c5..10c7bbcf81 100644 --- a/gtk/gtkmountoperation-x11.c +++ b/gtk/gtkmountoperation-x11.c @@ -160,7 +160,7 @@ get_utf8_property (Display *xdisplay, if (!g_utf8_validate (val, nitems, NULL)) { - g_warning ("Property %s contained invalid UTF-8\n", + g_warning ("Property %s contained invalid UTF-8", gdk_x11_get_xatom_name (atom)); XFree (val); return NULL; |