From cfb5f18de4e9368dc4c7ecd79c89f9387873e8fc Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Sun, 11 Dec 2011 19:33:27 -0500 Subject: [PATCH] Correct signature mismatch that prevented this symbol from winding up in the library properly. Fixes DEBUG build. --- src/build/libroot/misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/libroot/misc.cpp b/src/build/libroot/misc.cpp index bc7f0a3b23..52c74f6f08 100644 --- a/src/build/libroot/misc.cpp +++ b/src/build/libroot/misc.cpp @@ -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);