1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Silence a GCC warning about reaching the end of non-void func

Spotted by:	Marko
This commit is contained in:
Vasil Dimov
2010-09-28 11:12:34 +03:00
parent 7535f1eec9
commit 68e34ab133

View File

@@ -1012,8 +1012,8 @@ trx_i_s_common_fill_table(
deadlock occurs between the mysqld server and mysql client,
see http://bugs.mysql.com/29900 ; when that bug is resolved
we can enable the DBUG_RETURN(ret) above */
DBUG_RETURN(0);
ret++; // silence a gcc46 warning
DBUG_RETURN(0);
#endif
}