summaryrefslogtreecommitdiff
path: root/src/shared/bus-util.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-05-30 01:07:37 +0900
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-05-29 20:18:45 +0200
commitead6bd250d928eb7bca2ba63bd25aa5b1f56b84c (patch)
treec3dc0756beda089c9a6b5bb0c77fcc03d5b0d808 /src/shared/bus-util.c
parent706a3df4beba0fb14c4b0e6cb8920721c850ac99 (diff)
downloadsystemd-ead6bd250d928eb7bca2ba63bd25aa5b1f56b84c.tar.gz
tree-wide: fix typo in comments and NEWS
Diffstat (limited to 'src/shared/bus-util.c')
-rw-r--r--src/shared/bus-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/bus-util.c b/src/shared/bus-util.c
index 998134ec8c..a1d3ea2fb5 100644
--- a/src/shared/bus-util.c
+++ b/src/shared/bus-util.c
@@ -838,7 +838,7 @@ int bus_print_property(const char *name, sd_bus_message *m, bool value, bool all
printf("%s=", name);
/* This property has multiple space-separated values, so
- * neither spaces not newlines can be allowed in a value. */
+ * neither spaces nor newlines can be allowed in a value. */
good = str[strcspn(str, " \n")] == '\0';
printf("%s%s", first ? "" : " ", good ? str : "[unprintable]");