From eec2f8ba2f996c70b26fb8fd7a7fe0d7e419a540 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 13 Mar 2003 13:52:15 +0100 Subject: [PATCH] - fixed newly added DBUG_RETURN to DBUG_VOID_RETURN (compile failed with "DBUG_RETURN undeclared" on Mac OS X) --- sql/sql_class.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_class.cc b/sql/sql_class.cc index a481b365182..5cec1ba7a81 100644 --- a/sql/sql_class.cc +++ b/sql/sql_class.cc @@ -426,7 +426,7 @@ void THD::close_active_vio() vio_close(active_vio); active_vio = 0; } - DBUG_RETURN; + DBUG_VOID_RETURN; } #endif