summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2003-03-13 13:52:15 +0100
committerunknown <lenz@mysql.com>2003-03-13 13:52:15 +0100
commiteec2f8ba2f996c70b26fb8fd7a7fe0d7e419a540 (patch)
treefe95b252dc8a1b3570a9c014043b2810bf0b12e0
parenta4aaac02f3b50f2009a163d531afb686a03e47dd (diff)
downloadmariadb-git-eec2f8ba2f996c70b26fb8fd7a7fe0d7e419a540.tar.gz
- fixed newly added DBUG_RETURN to DBUG_VOID_RETURN (compile failed with
"DBUG_RETURN undeclared" on Mac OS X)
-rw-r--r--sql/sql_class.cc2
1 files changed, 1 insertions, 1 deletions
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