projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2594b98
)
show a warning if we fail to set the locale
author
Dana Jansens
<danakj@orodu.net>
Mon, 13 Jan 2003 02:42:14 +0000
(
02:42
+0000)
committer
Dana Jansens
<danakj@orodu.net>
Mon, 13 Jan 2003 02:42:14 +0000
(
02:42
+0000)
src/main.cc
patch
|
blob
|
history
diff --git
a/src/main.cc
b/src/main.cc
index a43d21b11acc192c1b355c7a5c108ca255fdb88e..a422563d72d9e9cb504816598349be50ca9e5241 100644
(file)
--- a/
src/main.cc
+++ b/
src/main.cc
@@
-13,6
+13,10
@@
extern "C" {
# include <locale.h>
#endif // HAVE_LOCALE_H
+#ifdef HAVE_STDIO_H
+# include <stdio.h>
+#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);