From 7f7e4dc8457c408269e94307d9545fd504891afc Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 23 Sep 2010 20:40:03 -0700 Subject: [PATCH] i18n: Use UTF8 macro instead of "UTF8" literal string. I think that this was just a typo. --- src/libpspp/i18n.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libpspp/i18n.c b/src/libpspp/i18n.c index 6cb721a993..c0deb119c0 100644 --- a/src/libpspp/i18n.c +++ b/src/libpspp/i18n.c @@ -300,7 +300,7 @@ i18n_done (void) bool valid_encoding (const char *enc) { - iconv_t conv = iconv_open ("UTF8", enc); + iconv_t conv = iconv_open (UTF8, enc); if ( conv == (iconv_t) -1) return false; -- 2.30.2