From 2ee012b2e85573704bc2f0312fa54bd737423115 Mon Sep 17 00:00:00 2001 From: Annamalai Gurusami Date: Thu, 16 May 2013 16:56:02 +0530 Subject: [PATCH] Fixing a compiler warning issue. At the end of the function ibuf_insert_to_index_page_low() add a DBUG_RETURN(NULL). --- storage/innobase/ibuf/ibuf0ibuf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/storage/innobase/ibuf/ibuf0ibuf.c b/storage/innobase/ibuf/ibuf0ibuf.c index de883ee26b6..0351951f3d2 100644 --- a/storage/innobase/ibuf/ibuf0ibuf.c +++ b/storage/innobase/ibuf/ibuf0ibuf.c @@ -3897,6 +3897,7 @@ ibuf_insert_to_index_page_low( fputs("InnoDB: Submit a detailed bug report" " to http://bugs.mysql.com\n", stderr); ut_ad(0); + DBUG_RETURN(NULL); } /************************************************************************