Correct typo in printed string
authorJohn Darrington <john@darrington.wattle.id.au>
Sun, 30 Aug 2009 14:52:53 +0000 (16:52 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sun, 30 Aug 2009 14:52:53 +0000 (16:52 +0200)
src/libpspp/i18n.c

index e08ba2804bbf4d6b0dbe7c6cf81b820c7a239462..80a0ed35dd57a388f622146482e56fddca9b7211 100644 (file)
@@ -73,13 +73,13 @@ create_iconv (const char* tocode, const char* fromcode)
   hmapx_insert (&map, converter, hash);
 
   /* I don't think it's safe to translate this string or to use messaging
-     as the convertors have not yet been set up */
+     as the converters have not yet been set up */
   if ( (iconv_t) -1 == converter->conv && 0 != strcmp (tocode, fromcode))
     {
       const int err = errno;
       fprintf (stderr,
                "Warning: "
-               "cannot create a convertor for \"%s\" to \"%s\": %s\n",
+               "cannot create a converter for \"%s\" to \"%s\": %s\n",
                fromcode, tocode, strerror (err));
     }