From 99a483cde31bdbc68a9e7c002105b40174768c1d Mon Sep 17 00:00:00 2001 From: stryqx Date: Sat, 12 Oct 2002 08:13:44 +0000 Subject: [PATCH] Implicit cast breaks FreeBSD build. --- src/qli/err.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qli/err.cpp b/src/qli/err.cpp index 206e6392a8..dba3d586bb 100644 --- a/src/qli/err.cpp +++ b/src/qli/err.cpp @@ -280,7 +280,7 @@ void ERRQ_pending(void) **************************************/ if (QLI_error) { - ib_printf("%s\n", QLI_error); + ib_printf("%s\n", (const char*)QLI_error); QLI_error = NULL; } }