]> git.saurik.com Git - bison.git/commitdiff
(table_grow, pack_vector): Wrap strings in _() if
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Aug 2002 14:55:23 +0000 (14:55 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Aug 2002 14:55:23 +0000 (14:55 +0000)
they need translation.

src/tables.c

index 47d9d6af2e97f49492191f8fb3fb0a7a68e1473f..17bc5cd635ca19adee0d9603fbe4e73624fc074b 100644 (file)
@@ -207,8 +207,8 @@ table_grow (size_t desired)
     table_size *= 2;
 
   if (trace_flag & trace_resource)
-    fprintf (stderr, "growing table and check from: %d to %d\n",
-            old_size, table_size);
+    fprintf (stderr, _("growing table and check from: %lu to %lu\n"),
+            (unsigned long) old_size, (unsigned long) table_size);
 
   table = XREALLOC (table, base_t, table_size);
   check = XREALLOC (check, base_t, table_size);
@@ -754,7 +754,7 @@ pack_vector (vector_number_t vector)
            high = loc;
 
          if (j < BASE_MIN || BASE_MAX < j)
-           fatal ("base_t too small to hold %d\n", j);
+           fatal (_("base_t too small to hold %d\n"), j);
          return j;
        }
     }