diff options
author | Lukas Fleischer | 2013-03-03 16:04:29 +0100 |
---|---|---|
committer | Lukas Fleischer | 2013-03-04 01:12:48 +0100 |
commit | 53bc747d311d18642fa3ad0cc0de34f3899ed1f4 (patch) | |
tree | 97e6fa2e4e7300f55a180917059b71e566c260fe /ui-tree.c | |
parent | 7f4e8c33aeb65bdc5695c9fd13ec1ceb100303c7 (diff) | |
download | cgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.tar.gz cgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.tar.bz2 cgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.zip |
Fix several whitespace errors
* Remove whitespace at the end of lines.
* Replace space indentation by tabs.
* Add whitespace before/after several operators ("+", "-", "*", ...)
* Add whitespace to assignments ("foo = bar;").
* Fix whitespace in parameter lists ("foobar(foo, bar, 42)").
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to 'ui-tree.c')
-rw-r--r-- | ui-tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,7 +27,7 @@ static void print_text_buffer(const char *name, char *buf, unsigned long size) | |||
27 | html("<tr><td class='linenumbers'><pre>"); | 27 | html("<tr><td class='linenumbers'><pre>"); |
28 | idx = 0; | 28 | idx = 0; |
29 | lineno = 0; | 29 | lineno = 0; |
30 | 30 | ||
31 | if (size) { | 31 | if (size) { |
32 | htmlf(numberfmt, ++lineno); | 32 | htmlf(numberfmt, ++lineno); |
33 | while(idx < size - 1) { // skip absolute last newline | 33 | while(idx < size - 1) { // skip absolute last newline |
@@ -228,7 +228,7 @@ static int walk_tree(const unsigned char *sha1, const char *base, int baselen, | |||
228 | 228 | ||
229 | if (state == 0) { | 229 | if (state == 0) { |
230 | memcpy(buffer, base, baselen); | 230 | memcpy(buffer, base, baselen); |
231 | strcpy(buffer+baselen, pathname); | 231 | strcpy(buffer + baselen, pathname); |
232 | if (strcmp(match_path, buffer)) | 232 | if (strcmp(match_path, buffer)) |
233 | return READ_TREE_RECURSIVE; | 233 | return READ_TREE_RECURSIVE; |
234 | 234 | ||