summaryrefslogtreecommitdiff
path: root/builtin/stripspace.c
diff options
context:
space:
mode:
authorMatthieu Moy <Matthieu.Moy@imag.fr>2013-09-06 17:43:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-09-06 20:33:17 (GMT)
commit1686e2cc87ff96c38ce4a9f77cd1d617d85f2a6c (patch)
treef7397ffd1308b8e364b0e632efc84bf968c739e9 /builtin/stripspace.c
parente230c568c4b9a991e3175e5f65171a566fd8e39c (diff)
downloadgit-1686e2cc87ff96c38ce4a9f77cd1d617d85f2a6c.zip
git-1686e2cc87ff96c38ce4a9f77cd1d617d85f2a6c.tar.gz
git-1686e2cc87ff96c38ce4a9f77cd1d617d85f2a6c.tar.bz2
builtin/stripspace.c: fix broken indentation
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/stripspace.c')
-rw-r--r--builtin/stripspace.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/builtin/stripspace.c b/builtin/stripspace.c
index e981dfb..1259ed7 100644
--- a/builtin/stripspace.c
+++ b/builtin/stripspace.c
@@ -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;
}