From fcc8092003b7c9096e17c192a6d407da462945a0 Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Thu, 25 Aug 2016 16:43:49 +0200 Subject: [PATCH] fix another space --- bf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bf.c b/bf.c index 7a4a123..189eba9 100644 --- a/bf.c +++ b/bf.c @@ -69,7 +69,7 @@ int main(int argc, char *argv[]) } else { depth = 1; while (depth > 0){ - switch(fgetc(in)){ + switch (fgetc(in)){ case ']': depth--; break; -- 2.20.1