diff options
author | Vito Caputo <vito.caputo@coreos.com> | 2016-02-23 05:32:04 +0100 |
---|---|---|
committer | Vito Caputo <vito.caputo@coreos.com> | 2016-02-23 05:32:04 +0100 |
commit | 313cefa1d96ff039d31994e4ea22e6c531a99ebd (patch) | |
tree | 32b3e22b983edb5d41b9aa64255d0495fa32a2e0 /src/basic/strbuf.c | |
parent | Merge pull request #2706 from whot/hwdb-updates (diff) | |
download | systemd-313cefa1d96ff039d31994e4ea22e6c531a99ebd.tar.xz 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/strbuf.c')
-rw-r--r-- | src/basic/strbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/strbuf.c b/src/basic/strbuf.c index dac2881603..797f00cf71 100644 --- a/src/basic/strbuf.c +++ b/src/basic/strbuf.c @@ -121,7 +121,7 @@ static void bubbleinsert(struct strbuf_node *node, sizeof(struct strbuf_child_entry) * (node->children_count - left)); node->children[left] = new; - node->children_count ++; + node->children_count++; } /* add string, return the index/offset into the buffer */ |