summaryrefslogtreecommitdiff
path: root/src/locale
diff options
context:
space:
mode:
authorMichal Schmidt <mschmidt@redhat.com>2014-11-28 14:26:31 +0100
committerMichal Schmidt <mschmidt@redhat.com>2014-11-28 14:26:31 +0100
commitff49bc3212cb07d850dcfd59940539773a0be26f (patch)
tree4d4209e4d84d6ca4533a103765d58cc9e429ea3d /src/locale
parentc95f97a20f3b854109dc564da64950067b388aeb (diff)
treewide: drop unnecessary trailing \n in log_*() calls
Diffstat (limited to 'src/locale')
-rw-r--r--src/locale/localectl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/locale/localectl.c b/src/locale/localectl.c
index 333b458471..211808b03e 100644
--- a/src/locale/localectl.c
+++ b/src/locale/localectl.c
@@ -118,11 +118,11 @@ static void print_overriden_variables(void) {
if (variables[j]) {
if (print_warning) {
log_warning("Warning: Settings on kernel command line override system locale settings in /etc/locale.conf.\n"
- " Command Line: %s=%s\n", locale_variable_to_string(j), variables[j]);
+ " Command Line: %s=%s", locale_variable_to_string(j), variables[j]);
print_warning = false;
} else
- log_warning(" %s=%s\n", locale_variable_to_string(j), variables[j]);
+ log_warning(" %s=%s", locale_variable_to_string(j), variables[j]);
}
finish:
for (j = 0; j < _VARIABLE_LC_MAX; j++)