X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/63400d5d02577364cbb9e4289af0d215695caf12..c97011bfc1cabd3f7aa8e263f83d9e8a18a262bf:/src/tables.c diff --git a/src/tables.c b/src/tables.c index 17bc5cd6..47d9d6af 100644 --- a/src/tables.c +++ b/src/tables.c @@ -207,8 +207,8 @@ table_grow (size_t desired) table_size *= 2; if (trace_flag & trace_resource) - fprintf (stderr, _("growing table and check from: %lu to %lu\n"), - (unsigned long) old_size, (unsigned long) table_size); + fprintf (stderr, "growing table and check from: %d to %d\n", + old_size, 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; } }