gas and ld pluralization fixes
[deliverable/binutils-gdb.git] / gas / config / tc-mcore.c
index 2ffb2413d6b0613266c8ff7c199fd7bce003e787..21fcc695fe4d1a36268d370bbad661540460a37f 100644 (file)
@@ -1947,7 +1947,10 @@ md_apply_fix (fixS *   fixP,
     case BFD_RELOC_MCORE_PCREL_IMM11BY2:
       if ((val & 1) != 0)
        as_bad_where (file, fixP->fx_line,
-                     _("odd distance branch (0x%lx bytes)"), (long) val);
+                     ngettext ("odd distance branch (0x%lx byte)",
+                               "odd distance branch (0x%lx bytes)",
+                               (long) val),
+                     (long) val);
       val /= 2;
       if (((val & ~0x3ff) != 0) && ((val | 0x3ff) != -1))
        as_bad_where (file, fixP->fx_line,
This page took 0.024552 seconds and 4 git commands to generate.