OSDN Git Service

builtin/stripspace.c: fix broken indentation
authorMatthieu Moy <Matthieu.Moy@imag.fr>
Fri, 6 Sep 2013 17:43:04 +0000 (19:43 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 6 Sep 2013 20:33:17 +0000 (13:33 -0700)
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/stripspace.c

index e981dfb..1259ed7 100644 (file)
@@ -89,11 +89,11 @@ int cmd_stripspace(int argc, const char **argv, const char *prefix)
 
        if (argc == 2) {
                if (!strcmp(argv[1], "-s") ||
-                       !strcmp(argv[1], "--strip-comments")) {
-                        strip_comments = 1;
+                   !strcmp(argv[1], "--strip-comments")) {
+                       strip_comments = 1;
                } else if (!strcmp(argv[1], "-c") ||
-                                        !strcmp(argv[1], "--comment-lines")) {
-                        mode = COMMENT_LINES;
+                          !strcmp(argv[1], "--comment-lines")) {
+                       mode = COMMENT_LINES;
                } else {
                        mode = INVAL;
                }