diff options
author | Vito Caputo <vito.caputo@coreos.com> | 2016-02-22 20:32:04 -0800 |
---|---|---|
committer | Vito Caputo <vito.caputo@coreos.com> | 2016-02-22 20:32:04 -0800 |
commit | 313cefa1d96ff039d31994e4ea22e6c531a99ebd (patch) | |
tree | 32b3e22b983edb5d41b9aa64255d0495fa32a2e0 /src/basic/utf8.c | |
parent | Merge pull request #2706 from whot/hwdb-updates (diff) | |
download | systemd-313cefa1d96ff039d31994e4ea22e6c531a99ebd.tar.gz systemd-313cefa1d96ff039d31994e4ea22e6c531a99ebd.tar.bz2 systemd-313cefa1d96ff039d31994e4ea22e6c531a99ebd.zip |
tree-wide: make ++/-- usage consistent WRT spacing
Throughout the tree there's spurious use of spaces separating ++ and --
operators from their respective operands. Make ++ and -- operator
consistent with the majority of existing uses; discard the spaces.
Diffstat (limited to 'src/basic/utf8.c')
-rw-r--r-- | src/basic/utf8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/utf8.c b/src/basic/utf8.c index 629db123c..6eae2b983 100644 --- a/src/basic/utf8.c +++ b/src/basic/utf8.c @@ -241,7 +241,7 @@ char *utf8_escape_non_printable(const char *str) { *(s++) = hexchar((int) *str); str += 1; - len --; + len--; } } } else { |