summaryrefslogtreecommitdiff
path: root/storage/innobase/ibuf
diff options
context:
space:
mode:
authorAnnamalai Gurusami <annamalai.gurusami@oracle.com>2013-05-16 16:56:02 +0530
committerAnnamalai Gurusami <annamalai.gurusami@oracle.com>2013-05-16 16:56:02 +0530
commit9904193de2acc80ca295989adb2dd8e15ae4543d (patch)
tree1d0e31158736d898fc44412f7208fa06195d941a /storage/innobase/ibuf
parentaffc7dc23cbacb228127f97e24eeb80e2d1fa359 (diff)
downloadmariadb-git-9904193de2acc80ca295989adb2dd8e15ae4543d.tar.gz
Fixing a compiler warning issue. At the end of the function
ibuf_insert_to_index_page_low() add a DBUG_RETURN(NULL).
Diffstat (limited to 'storage/innobase/ibuf')
-rw-r--r--storage/innobase/ibuf/ibuf0ibuf.c1
1 files changed, 1 insertions, 0 deletions
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);
}
/************************************************************************