X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fmain.cc;h=a422563d72d9e9cb504816598349be50ca9e5241;hb=6871cff3face4486055444a6c6218a552ddad461;hp=a43d21b11acc192c1b355c7a5c108ca255fdb88e;hpb=2627b85226b621868a4425f4aea695ed089d7de5;p=chaz%2Fopenbox 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);