Commit 9bf14143 authored by unknown's avatar unknown

A DBUG_RETURN to match a DBUG_ENTER


myisam/mi_dynrec.c:
  need DBUG_RETURN as we DBUG_ENTER
parent bfa22229
...@@ -311,7 +311,7 @@ static int update_backward_delete_link(MI_INFO *info, my_off_t delete_block, ...@@ -311,7 +311,7 @@ static int update_backward_delete_link(MI_INFO *info, my_off_t delete_block,
DBUG_RETURN(1); /* Wrong delete link */ DBUG_RETURN(1); /* Wrong delete link */
} }
} }
return 0; DBUG_RETURN(0);
} }
/* Delete datarecord from database */ /* Delete datarecord from database */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment