Browse code

Fix indentation

John Hawthorn authored on 10/01/2016 03:49:51
Showing 2 changed files

  • fzy.c index 8d78687..9521739 100644
  • fzytest.c index ac1b761..828fa1b 100644
... ...
@@ -221,12 +221,12 @@ int main(int argc, char *argv[]) {
221 221
 				break;
222 222
 			case 'b':
223 223
 				if (optarg) {
224
-				    if (sscanf(optarg, "%d", &benchmark) != 1) {
225
-					usage(argv[0]);
226
-					exit(EXIT_FAILURE);
227
-				    }
224
+					if (sscanf(optarg, "%d", &benchmark) != 1) {
225
+						usage(argv[0]);
226
+						exit(EXIT_FAILURE);
227
+					}
228 228
 				} else {
229
-				    benchmark = 100;
229
+					benchmark = 100;
230 230
 				}
231 231
 				break;
232 232
 			case 't':
... ...
@@ -108,7 +108,6 @@ void test_positions_5() {
108 108
 	assert(positions[2] == 6);
109 109
 }
110 110
 
111
-
112 111
 void test_positions_exact() {
113 112
 	size_t positions[3];
114 113
 	match_positions("foo", "foo", positions);