gas and ld pluralization fixes
[deliverable/binutils-gdb.git] / gas / frags.c
index 7997422ce04a4202a1e44cbf33c130a391309462..c502017631c4d9c9848a0ebe288ada7e6e9db77b 100644 (file)
@@ -112,7 +112,10 @@ frag_grow (size_t nchars)
 
       /* Check for possible overflow.  */
       if (newc < nchars)
-        as_fatal (_("can't extend frag %lu chars"), (unsigned long) nchars);
+       as_fatal (ngettext ("can't extend frag %lu char",
+                           "can't extend frag %lu chars",
+                           (unsigned long) nchars),
+                 (unsigned long) nchars);
 
       /* Force to allocate at least NEWC bytes, but not less than the
          default.  */
This page took 0.023174 seconds and 4 git commands to generate.