summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <halfline@gmail.com>2021-07-14 14:30:17 +0000
committerRay Strode <halfline@gmail.com>2021-07-14 14:30:17 +0000
commitb0c8d4e670a92d89d946d5d0b6f25a004d78efae (patch)
tree6039ac528fa95544607798eb9f7c1cab9fa0684d
parent29ceb0d3cc218cbe307eeb4d90ab9b07396223a5 (diff)
parent3de5d18fbe617397cd5730c0bbd470a3c42e74c6 (diff)
downloadgdm-b0c8d4e670a92d89d946d5d0b6f25a004d78efae.tar.gz
Merge branch 'gdm-runtime-config-end-lines' into 'master'
gdm-runtime-config: end lines in output See merge request GNOME/gdm!139
-rw-r--r--utils/gdm-runtime-config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/gdm-runtime-config.c b/utils/gdm-runtime-config.c
index 8034a2e5..66bbbf31 100644
--- a/utils/gdm-runtime-config.c
+++ b/utils/gdm-runtime-config.c
@@ -37,7 +37,7 @@ main (int argc, char *argv[])
if (argc < 5 || g_strcmp0(argv[1], "set") != 0) {
g_printerr("gdm-runtime-config: command format should be " \
"'gdm-runtime-config set <group> <key> <value>'\n" \
- "For example, 'gdm-runtime-config set daemon WaylandEnable true'");
+ "For example, 'gdm-runtime-config set daemon WaylandEnable true'\n");
return EX_USAGE;
}
@@ -66,7 +66,7 @@ main (int argc, char *argv[])
saved_okay = g_key_file_save_to_file (key_file, GDM_RUNTIME_CONF, &error);
if (!saved_okay) {
- g_printerr ("gdm-runtime-config: unable to set '%s' in '%s' group to '%s': %s",
+ g_printerr ("gdm-runtime-config: unable to set '%s' in '%s' group to '%s': %s\n",
key, group, value, error->message);
return EX_CANTCREAT;
}