diff options
author | Jonas Ådahl <jadahl@gmail.com> | 2020-10-02 17:54:56 +0200 |
---|---|---|
committer | Jonas Ådahl <jadahl@gmail.com> | 2020-10-08 16:38:41 +0200 |
commit | 2c95e0899879c5e00edc2079fb50d2f1f5c0a5e3 (patch) | |
tree | a6cc1a01fabf0e45cc0c7769b84dd4960ade8274 /src/wayland/meta-xwayland-dnd.c | |
parent | 7266e516a1f52cbb2e4bb133a1206ced1ad09ad1 (diff) | |
download | mutter-2c95e0899879c5e00edc2079fb50d2f1f5c0a5e3.tar.gz |
Remove misplaced line break in g_* logging functions
They resulted in empty lines in the log.
https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1466
Diffstat (limited to 'src/wayland/meta-xwayland-dnd.c')
-rw-r--r-- | src/wayland/meta-xwayland-dnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wayland/meta-xwayland-dnd.c b/src/wayland/meta-xwayland-dnd.c index cd0f0d3ea..60f416821 100644 --- a/src/wayland/meta-xwayland-dnd.c +++ b/src/wayland/meta-xwayland-dnd.c @@ -362,7 +362,7 @@ transfer_cb (MetaSelection *selection, if (!meta_selection_transfer_finish (selection, res, &error)) { - g_warning ("Could not transfer DnD selection: %s\n", error->message); + g_warning ("Could not transfer DnD selection: %s", error->message); g_error_free (error); } |