From: John Darrington Date: Sun, 30 Aug 2009 14:52:53 +0000 (+0200) Subject: Correct typo in printed string X-Git-Tag: build37~13 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=cdaf2362480a6462d53522603bf8ce12fd74fd3a Correct typo in printed string --- diff --git a/src/libpspp/i18n.c b/src/libpspp/i18n.c index e08ba280..80a0ed35 100644 --- a/src/libpspp/i18n.c +++ b/src/libpspp/i18n.c @@ -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)); }