aboutsummaryrefslogtreecommitdiffstats
path: root/src/redo.c
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2014-04-14 04:19:50 +0200
committerxRamses <tharre3@gmail.com>2014-04-14 04:19:50 +0200
commit4719786e18c85c3b8ab937124e83b9e8430c1bfa (patch)
tree6466d06051fa40436cb4e9aff0dc4d4d974cacda /src/redo.c
parent64d3c84b39e3fa03a15f0d24747f2aa7500c2e7a (diff)
downloadredo-4719786e18c85c3b8ab937124e83b9e8430c1bfa.tar.gz
redo-4719786e18c85c3b8ab937124e83b9e8430c1bfa.tar.xz
redo-4719786e18c85c3b8ab937124e83b9e8430c1bfa.zip
Convert all tabs to whitespaces
Diffstat (limited to 'src/redo.c')
-rw-r--r--src/redo.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/redo.c b/src/redo.c
index c745c54..68d401e 100644
--- a/src/redo.c
+++ b/src/redo.c
@@ -4,12 +4,12 @@
#include "util.h"
int main(int argc, char *argv[]) {
- if (argc < 2) {
- build_target("all");
- } else {
- int i;
- for (i = 1; i < argc; ++i) {
- build_target(argv[i]);
- }
- }
+ if (argc < 2) {
+ build_target("all");
+ } else {
+ int i;
+ for (i = 1; i < argc; ++i) {
+ build_target(argv[i]);
+ }
+ }
}