summaryrefslogtreecommitdiff
path: root/src/dns/nm-dns-systemd-resolved.c
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2018-10-06 11:26:42 +0200
committerLubomir Rintel <lkundrak@v3.sk>2018-10-12 14:34:58 +0200
commit02958bba80d7b9c1701f657c75a08c81e243f83b (patch)
tree9f32bc8c08af310635824127fa5afa1bd5e4b8c5 /src/dns/nm-dns-systemd-resolved.c
parent08225c5e966ccd867adc93431b3e1ccb8e776178 (diff)
downloadNetworkManager-02958bba80d7b9c1701f657c75a08c81e243f83b.tar.gz
all: remove \n endings from log calls
The extra newlines look bad when logging to the console. https://github.com/NetworkManager/NetworkManager/pull/223
Diffstat (limited to 'src/dns/nm-dns-systemd-resolved.c')
-rw-r--r--src/dns/nm-dns-systemd-resolved.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dns/nm-dns-systemd-resolved.c b/src/dns/nm-dns-systemd-resolved.c
index 303ceac12e..10797b8622 100644
--- a/src/dns/nm-dns-systemd-resolved.c
+++ b/src/dns/nm-dns-systemd-resolved.c
@@ -129,7 +129,7 @@ call_done (GObject *source, GAsyncResult *r, gpointer user_data)
if (!v) {
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
return;
- _LOGW ("Failed: %s\n", error->message);
+ _LOGW ("Failed: %s", error->message);
g_error_free (error);
}
}