Commit 2620d78e authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed typo in error message.

parent 8c3f40ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -186,7 +186,7 @@ static GlobCode glob_range(URLGlob *glob, char *pattern,
    if ((rc < 3) || (min_c >= max_c) || ((max_c - min_c) > ('z' - 'a'))) {
    if ((rc < 3) || (min_c >= max_c) || ((max_c - min_c) > ('z' - 'a'))) {
      /* the pattern is not well-formed */
      /* the pattern is not well-formed */
      snprintf(glob->errormsg, sizeof(glob->errormsg),
      snprintf(glob->errormsg, sizeof(glob->errormsg),
               "errpr: bad range specification after pos %d\n", pos);
               "error: bad range specification after pos %d\n", pos);
      return GLOB_ERROR;
      return GLOB_ERROR;
    }
    }