Browse Source

Squashed -pedantic warning by removing ; after function def

Sergey Lyubka 11 years ago
parent
commit
d8d4bb4fbd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frozen.c

+ 1 - 1
frozen.c

@@ -38,7 +38,7 @@ static int left(const struct frozen *f) {
 
 static int is_space(int ch) {
   return ch == ' ' || ch == '\t' || ch == '\r' || ch == '\n';
-};
+}
 
 static void skip_whitespaces(struct frozen *f) {
   while (f->cur < f->end && is_space(*f->cur)) f->cur++;