diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-02-26 22:37:40 +0000 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-02-26 22:37:40 +0000 |
commit | e33e1083ad703ed8ab0748ad05256cc5a4907efc (patch) | |
tree | b1f286a8793a02968929911269ce59813beb5826 | |
parent | cfd30d903dd77c6c46ffa2aa736968040b0eb558 (diff) |
tests: Fix WinCE compilation
git-svn-id: https://pugixml.googlecode.com/svn/trunk@991 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r-- | tests/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/main.cpp b/tests/main.cpp index 770c693..3bcf9be 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -176,6 +176,6 @@ int main(int, char** argv) #ifdef _WIN32_WCE int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { - return main(1, ""); + return main(0, NULL); } #endif |