summaryrefslogtreecommitdiff
path: root/src/basic/io-util.c
diff options
context:
space:
mode:
authorVito Caputo <vito.caputo@coreos.com>2016-02-22 20:32:04 -0800
committerSven Eden <yamakuzure@gmx.net>2017-06-16 10:12:57 +0200
commitbc983c987eb3f92eceb373ba4e1c2076b0b3ca88 (patch)
treeea6f34eed7297fc3cd0a7bd64835bd310603fb7b /src/basic/io-util.c
parent3c84247622c7d6ad51e7a49907995e3e48b5f472 (diff)
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/io-util.c')
-rw-r--r--src/basic/io-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/io-util.c b/src/basic/io-util.c
index 3ec8d6123..0037a37f2 100644
--- a/src/basic/io-util.c
+++ b/src/basic/io-util.c
@@ -249,7 +249,7 @@ ssize_t sparse_write(int fd, const void *p, size_t sz, size_t run_length) {
} else if (n > 0)
q += n;
else
- q ++;
+ q++;
}
if (q > w) {