]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/except.cpp
MSVC compatibility fixes
[libs/core.git] / source / core / except.cpp
index 0ae2e59bd9ba339a78d7560ed13326ac6af83e45..90deb4071b68983d5f2c487fee8a2192f1bb42af 100644 (file)
@@ -43,7 +43,7 @@ string SystemError::build_what(const string &w, int e)
        buf<<w<<": ";
 #ifdef WIN32
        char msg[1024];
-       if(FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, 0, e, 0, msg, sizeof(msg), 0))
+       if(FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, 0, e, 0, msg, sizeof(msg), 0))
                buf<<msg;
        else
                buf<<e;