From cdaf2362480a6462d53522603bf8ce12fd74fd3a Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sun, 30 Aug 2009 16:52:53 +0200 Subject: [PATCH] Correct typo in printed string --- src/libpspp/i18n.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)); } -- 2.30.2