diff options
author | Tharre <tharre3@gmail.com> | 2014-08-13 18:34:03 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2014-08-13 18:34:03 +0200 |
commit | 40135fffdbc3389058699460c8e128fa8740cbe2 (patch) | |
tree | e7aa96176fbc60f355a85f9cf36dbcb03bffcdaa /src/redo-ifchange.c | |
parent | ebf8030fc1c78a857d92e359d0b186e0224f2ba3 (diff) | |
download | redo-40135fffdbc3389058699460c8e128fa8740cbe2.tar.gz redo-40135fffdbc3389058699460c8e128fa8740cbe2.tar.xz redo-40135fffdbc3389058699460c8e128fa8740cbe2.zip |
Header file cleanup and smaller format fixes
Diffstat (limited to 'src/redo-ifchange.c')
-rw-r--r-- | src/redo-ifchange.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/redo-ifchange.c b/src/redo-ifchange.c index 1efe0a5..0b4c1af 100644 --- a/src/redo-ifchange.c +++ b/src/redo-ifchange.c @@ -5,8 +5,7 @@ #include "dbg.h" int main(int argc, char *argv[]) { - int i; - for (i = 1; i < argc; ++i) { + for (int i = 1; i < argc; ++i) { /*debug("Testing if %s is up-to-date ...\n", argv[i]);*/ if (has_changed(argv[i], 'c', false)) { /*printf("=> no\n");*/ |