Commit 45c93dad authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed some "statement not reached" warnings

parent efc71583
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);

+1 −1
Original line number Diff line number Diff line
@@ -79,6 +79,6 @@ UNITTEST_START
    free(out);
  }

  return fails;
  fail_if(fails, "output mismatched");

UNITTEST_STOP