Fixed some "statement not reached" warnings

This commit is contained in:
Dan Fandrich 2014-07-12 01:39:56 +02:00
parent efc71583e7
commit 45c93dad1d
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ typedef enum {
} GlobCode;
#define GLOBERROR(string, column, code) \
glob->error = string, glob->pos = column, code;
glob->error = string, glob->pos = column, code
void glob_cleanup(URLGlob* glob);

View File

@ -79,6 +79,6 @@ UNITTEST_START
free(out);
}
return fails;
fail_if(fails, "output mismatched");
UNITTEST_STOP