From: Ben Pfaff Date: Fri, 24 Sep 2010 03:40:03 +0000 (-0700) Subject: i18n: Use UTF8 macro instead of "UTF8" literal string. X-Git-Tag: sav-api~20 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=7f7e4dc8457c408269e94307d9545fd504891afc i18n: Use UTF8 macro instead of "UTF8" literal string. I think that this was just a typo. --- 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;