Correct signature mismatch that prevented this symbol from winding up

in the library properly. Fixes DEBUG build.
This commit is contained in:
Rene Gollent
2011-12-11 19:33:27 -05:00
parent 1394478206
commit cfb5f18de4
+1 -1
View File
@@ -24,7 +24,7 @@ debugger(const char *message)
// _debuggerAssert
int
_debuggerAssert(const char *file, int line, char *expression)
_debuggerAssert(const char *file, int line, const char *expression)
{
char buffer[2048];
snprintf(buffer, sizeof(buffer), "%s:%d: %s\n", file, line, expression);