Browse Source

Fixing a compiler warning issue. At the end of the function

ibuf_insert_to_index_page_low() add a DBUG_RETURN(NULL).
pull/843/head
Annamalai Gurusami 13 years ago
parent
commit
9904193de2
  1. 1
      storage/innobase/ibuf/ibuf0ibuf.c

1
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);
}
/************************************************************************

Loading…
Cancel
Save