Commit 6e6ec54b by Carlos Martín Nieto

Force the test's main function to use cdecl under Windows

Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
parent 8c1d5d48
...@@ -69,7 +69,12 @@ static libgit2_suite suite_methods[]= { ...@@ -69,7 +69,12 @@ static libgit2_suite suite_methods[]= {
#define GIT_SUITE_COUNT (ARRAY_SIZE(suite_methods)) #define GIT_SUITE_COUNT (ARRAY_SIZE(suite_methods))
int main(int GIT_UNUSED(argc), char *GIT_UNUSED(argv[])) #ifdef GIT_WIN32
int __cdecl
#else
int
#endif
main(int GIT_UNUSED(argc), char *GIT_UNUSED(argv[]))
{ {
unsigned int i, failures; unsigned int i, failures;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment