]> git.lizzy.rs Git - minetest.git/commitdiff
gettext.cpp: Fix syntax error when using MSVC
authorjh10001 <jh10001@live.cn>
Mon, 31 Aug 2015 18:36:02 +0000 (02:36 +0800)
committerest31 <MTest31@outlook.com>
Mon, 31 Aug 2015 22:26:11 +0000 (00:26 +0200)
Also remove trailing whitespaces from the file

src/gettext.cpp

index 0fd6b574e2bab4397953f84d0b2eb1f13f20fc33..e8819f1319be0d8cabd53255698c396df4371922 100644 (file)
@@ -167,7 +167,7 @@ void init_gettext(const char *path, const std::string &configured_language) {
                        if (parameters != "") {
                                ptr_parameters = parameters.c_str();
                        }
-                       
+
                        /** users may start by short name in commandline without extention **/
                        std::string appname = argv[0];
                        if (appname.substr(appname.length() - 4) != ".exe") {
@@ -184,7 +184,7 @@ void init_gettext(const char *path, const std::string &configured_language) {
                                        NULL,
                                        &startupinfo,
                                        &processinfo)) {
-                               char buffer[1024];              
+                               char buffer[1024];
                                FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM,
                                        NULL,
                                        GetLastError(),
@@ -202,14 +202,14 @@ void init_gettext(const char *path, const std::string &configured_language) {
                        else {
                                exit(0);
                        }
+               }
 #else
-                       errorstream << "*******************************************************" << std::endl;
-                       errorstream << "Can't apply locale workaround for server!" << std::endl;
-                       errorstream << "Expect language to be broken!" << std::endl;
-                       errorstream << "*******************************************************" << std::endl;
+               errorstream << "*******************************************************" << std::endl;
+               errorstream << "Can't apply locale workaround for server!" << std::endl;
+               errorstream << "Expect language to be broken!" << std::endl;
+               errorstream << "*******************************************************" << std::endl;
 
 #endif
-               }
 
                setlocale(LC_ALL,configured_language.c_str());
 #else // Mingw