]> git.saurik.com Git - bison.git/blobdiff - src/scan-gram.l
cosmetics: prettify names for compiled object for bison
[bison.git] / src / scan-gram.l
index fa200d64da107619362f0a4d8df23e2cf86ab4d1..d375fc12ccdf71e426e00771967e629e6d8a5a16 100644 (file)
@@ -941,8 +941,8 @@ handle_syncline (char *args, location loc)
 {
   char *after_num;
   unsigned long int lineno = strtoul (args, &after_num, 10);
-  char *file = mbschr (after_num, '"') + 1;
-  *mbschr (file, '"') = '\0';
+  char *file = strchr (after_num, '"') + 1;
+  *strchr (file, '"') = '\0';
   if (INT_MAX <= lineno)
     {
       warn_at (loc, _("line number overflow"));