summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2017-03-24 15:44:27 +0100
committerBastien Nocera <hadess@hadess.net>2017-03-24 15:46:40 +0100
commit7bf91faa94a1caf9ab4439439ba0f4b800fec0fc (patch)
treeb8125374d0e0b8ebbe47074f2a5a6b3bf69cf187 /src
parent2b45b82af57bfaa2f2c0e9ce812d8c3e706d9045 (diff)
device: Remove extraneous linefeed in g_debug()
g_debug() already adds a linefeed.
Diffstat (limited to 'src')
-rw-r--r--src/up-device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/up-device.c b/src/up-device.c
index ac6a228..1405605 100644
--- a/src/up-device.c
+++ b/src/up-device.c
@@ -641,7 +641,7 @@ up_device_refresh_internal (UpDevice *device)
/* the first time, print all properties */
if (!device->priv->has_ever_refresh) {
- g_debug ("added native-path: %s\n", up_exported_device_get_native_path (UP_EXPORTED_DEVICE (device)));
+ g_debug ("added native-path: %s", up_exported_device_get_native_path (UP_EXPORTED_DEVICE (device)));
device->priv->has_ever_refresh = TRUE;
goto out;
}