]> git.saurik.com Git - bison.git/blobdiff - src/getargs.c
fix for printers and destructors.
[bison.git] / src / getargs.c
index 8a3714e23f6995dfbb66ae7092f42228b68c4e6b..82e4e356064263a08274f90e6f4488d002994860 100644 (file)
@@ -559,7 +559,7 @@ getargs (int argc, char *argv[])
       case 'F': /* -FNAME[=VALUE]. */
         {
           char* name = optarg;
-          char* value = mbschr (optarg, '=');
+          char* value = strchr (optarg, '=');
           if (value)
             *value++ = 0;
           muscle_percent_define_insert (name, command_line_location (),
@@ -674,7 +674,7 @@ getargs (int argc, char *argv[])
         exit (EXIT_SUCCESS);
 
       case PRINT_DATADIR_OPTION:
-        printf ("%s\n", compute_pkgdatadir ());
+        printf ("%s\n", pkgdatadir ());
         exit (EXIT_SUCCESS);
 
       case REPORT_FILE_OPTION: