* windmc.c: ,%s' -> `%s' in a number of strings.
authorAlan Modra <amodra@gmail.com>
Mon, 15 Nov 2010 23:54:23 +0000 (23:54 +0000)
committerAlan Modra <amodra@gmail.com>
Mon, 15 Nov 2010 23:54:23 +0000 (23:54 +0000)
binutils/ChangeLog
binutils/windmc.c

index 0c431af0f1865c5d7f5036dec1745d253c715373..abe5db43d1706eb65eb27a221cda794974064ebb 100644 (file)
@@ -1,3 +1,7 @@
+2010-11-16  Jorma Karvonen  <karvonen.jorma@gmail.com>
+
+       * windmc.c: ,%s' -> `%s' in a number of strings.
+
 2010-11-16  Jie Zhang  <jie.zhang@analog.com>
 
        * readelf.c (get_machine_flags): Deal with Blackfin specific flags.
index 63db990594edaa99bdb98e104ea59af45a666496..749a5e7f2a956b32eb0f440d708cf499b93cdbb7 100644 (file)
@@ -1,5 +1,5 @@
 /* windmc.c -- a program to compile Windows message files.
-   Copyright 2007, 2008, 2009
+   Copyright 2007, 2008, 2009, 2010
    Free Software Foundation, Inc.
    Written by Kai Tietz, Onevision.
 
@@ -187,7 +187,7 @@ mc_create_path_text_file (const char *path, const char *ext)
   sprintf (hsz, "%s%s%s", (path != NULL ? path : ""), mcset_mc_basename,
     (ext != NULL ? ext : ""));
   if ((ret = fopen (hsz, "wb")) == NULL)
-    fatal (_("can't create %s file ,%s' for output.\n"), (ext ? ext : "text"), hsz);
+    fatal (_("can't create %s file `%s' for output.\n"), (ext ? ext : "text"), hsz);
   free (hsz);
   return ret;
 }
@@ -259,7 +259,7 @@ probe_codepage (rc_uint_type *cp, int *is_uni, const char *pswitch, int defmode)
       if (*cp != 0 && *cp != CP_UTF16)
        {
          fprintf (stderr, _("%s: warning: "), program_name);
-         fprintf (stderr, _("A codepage was specified switch ,%s' and UTF16.\n"), pswitch);
+         fprintf (stderr, _("A codepage was specified switch `%s' and UTF16.\n"), pswitch);
          fprintf (stderr, _("\tcodepage settings are ignored.\n"));
        }
       *cp = CP_UTF16;
@@ -1113,7 +1113,7 @@ main (int argc, char **argv)
     FILE *fp = fopen (input_filename, "rb");
 
     if (!fp)
-      fatal (_("unable to open file ,%s' for input.\n"), input_filename);
+      fatal (_("unable to open file `%s' for input.\n"), input_filename);
 
     fseek (fp, 0, SEEK_END);
     flen = ftell (fp);
This page took 0.025568 seconds and 4 git commands to generate.