]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/ser-unix.c
2005-02-10 Andrew Cagney <cagney@gnu.org>
[thirdparty/binutils-gdb.git] / gdb / ser-unix.c
index cf77be0d2a3df438879dd9bee731c1a534a82601..bc918941dcfd793dd93c3a28aafabcee03b03550 100644 (file)
@@ -758,12 +758,12 @@ rate_to_code (int rate)
            {
              if (i)
                {
-                 warning ("Invalid baud rate %d.  Closest values are %d and %d.",
+                 warning (_("Invalid baud rate %d.  Closest values are %d and %d."),
                            rate, baudtab[i - 1].rate, baudtab[i].rate);
                }
              else
                {
-                 warning ("Invalid baud rate %d.  Minimum value is %d.",
+                 warning (_("Invalid baud rate %d.  Minimum value is %d."),
                            rate, baudtab[0].rate);
                }
              return -1;
@@ -772,7 +772,7 @@ rate_to_code (int rate)
     }
  
   /* The requested speed was too large. */
-  warning ("Invalid baud rate %d.  Maximum value is %d.",
+  warning (_("Invalid baud rate %d.  Maximum value is %d."),
             rate, baudtab[i - 1].rate);
   return -1;
 }