Skip to content

Commit 2995719

Browse files
committed
Tab removal
1 parent a723173 commit 2995719

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

test/test-parse-reg.c

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -148,23 +148,23 @@ int main(int argc, char **argv) {
148148
int flags = 0;
149149

150150
while (argc > 1) {
151-
if (strcmp(argv[1], "-m") == 0) {
152-
flags |= HTS_PARSE_LIST;
153-
argc--; argv++;
154-
continue;
155-
}
156-
157-
if (strcmp(argv[1], "-c") == 0) {
158-
flags |= HTS_PARSE_ONE_COORD;
159-
argc--; argv++;
160-
continue;
161-
}
151+
if (strcmp(argv[1], "-m") == 0) {
152+
flags |= HTS_PARSE_LIST;
153+
argc--; argv++;
154+
continue;
155+
}
156+
157+
if (strcmp(argv[1], "-c") == 0) {
158+
flags |= HTS_PARSE_ONE_COORD;
159+
argc--; argv++;
160+
continue;
161+
}
162162

163163
// Automatic mode for test harness
164-
if (strcmp(argv[1], "-t") == 0)
164+
if (strcmp(argv[1], "-t") == 0)
165165
reg_test(argv[2]);
166166

167-
break;
167+
break;
168168
}
169169

170170
// Interactive mode for debugging

0 commit comments

Comments
 (0)