From: Dana Jansens Date: Mon, 13 Jan 2003 02:42:14 +0000 (+0000) Subject: show a warning if we fail to set the locale X-Git-Tag: openbox-2_3_0~383 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=2aff07a250930db7e0eb69dd6cd776333fcb8b9a;p=dana%2Fopenbox.git show a warning if we fail to set the locale --- diff --git a/src/main.cc b/src/main.cc index a43d21b1..a422563d 100644 --- a/src/main.cc +++ b/src/main.cc @@ -13,6 +13,10 @@ extern "C" { # include #endif // HAVE_LOCALE_H +#ifdef HAVE_STDIO_H +# include +#endif // HAVE_STDIO_H + #include "gettext.h" } @@ -20,7 +24,8 @@ extern "C" { int main(int argc, char **argv) { // initialize the locale - setlocale(LC_ALL, ""); + if (!setlocale(LC_ALL, "")) + printf("Couldn't set locale from environment.\n"); bindtextdomain(PACKAGE, LOCALEDIR); bind_textdomain_codeset(PACKAGE, "UTF-8"); textdomain(PACKAGE);