- fixed newly added DBUG_RETURN to DBUG_VOID_RETURN (compile failed with

"DBUG_RETURN undeclared" on Mac OS X)
This commit is contained in:
lenz@mysql.com 2003-03-13 13:52:15 +01:00
parent 6ac4944512
commit ced5770aba

View file

@ -426,7 +426,7 @@ void THD::close_active_vio()
vio_close(active_vio);
active_vio = 0;
}
DBUG_RETURN;
DBUG_VOID_RETURN;
}
#endif