Commit b7b61f0e authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrtd: Fix _CrtDbgReport calling convention.

parent 11cd0d34
...@@ -88,8 +88,8 @@ int CDECL _CrtSetDbgFlag(int new) ...@@ -88,8 +88,8 @@ int CDECL _CrtSetDbgFlag(int new)
/********************************************************************* /*********************************************************************
* _CrtDbgReport (MSVCRTD.@) * _CrtDbgReport (MSVCRTD.@)
*/ */
int CDECL _CrtDbgReport(int reportType, const char *filename, int linenumber, int WINAPIV _CrtDbgReport(int reportType, const char *filename, int linenumber,
const char *moduleName, const char *format, ...) const char *moduleName, const char *format, ...)
{ {
return 0; return 0;
} }
......
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