Commit 27663116 authored by iggy@amd64.(none)'s avatar iggy@amd64.(none)
Browse files

Correct failing build.

parent 997af9c1
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -533,8 +533,12 @@ C_MODE_END
#undef DBUG_OFF
#endif

#if defined(_lint) && !defined(DBUG_OFF)
/* We might be forced to turn debug off, if not turned off already */
#if (defined(FORCE_DBUG_OFF) || defined(_lint)) && !defined(DBUG_OFF)
#  define DBUG_OFF
#  ifdef DBUG_ON
#    undef DBUG_ON
#  endif
#endif

#include <my_dbug.h>