summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammed Sadiq <sadiq@sadiqpk.org>2019-07-05 20:12:22 +0530
committerMohammed Sadiq <sadiq@sadiqpk.org>2019-07-05 20:14:15 +0530
commitc6b8fe1a502afd7dd6a5958527e18bf31ed40968 (patch)
treea2bf66414b3c5886a7d68c89d355807d25aa913c
parent45cc86c410dac7c051c123934dfc2a6a49414e0b (diff)
downloadgnome-settings-daemon-c6b8fe1a502afd7dd6a5958527e18bf31ed40968.tar.gz
rfkill: add a space after the connection type string
otherwise, the debug messages will have them joined with the next word. This was an oversight introduced in 45cc86c410dac7c051c123934dfc2a6a49414e0b
-rw-r--r--plugins/rfkill/gsd-rfkill-manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/rfkill/gsd-rfkill-manager.c b/plugins/rfkill/gsd-rfkill-manager.c
index 4c24c733..5c8b6906 100644
--- a/plugins/rfkill/gsd-rfkill-manager.c
+++ b/plugins/rfkill/gsd-rfkill-manager.c
@@ -359,9 +359,9 @@ rfkill_changed (CcRfkillGlib *rfkill,
const gchar *type = "";
if (event->type == RFKILL_TYPE_BLUETOOTH)
- type = "Bluetooth";
+ type = "Bluetooth ";
else if (event->type == RFKILL_TYPE_WWAN)
- type = "WWAN";
+ type = "WWAN ";
switch (event->op) {
case RFKILL_OP_ADD: