diff options
author | marko@hundin.mysql.fi <> | 2004-03-13 22:48:00 +0200 |
---|---|---|
committer | marko@hundin.mysql.fi <> | 2004-03-13 22:48:00 +0200 |
commit | 9ed26f721dc5c0fcf10166dbae0463f0a5489d1c (patch) | |
tree | 61f1cdfa1fd7e1a5d6d8c6925730b71cec1f2e9d /innobase/que | |
parent | 9eede1c6bcb2736e9369286eb71682ebcdad9ceb (diff) | |
download | mariadb-git-9ed26f721dc5c0fcf10166dbae0463f0a5489d1c.tar.gz |
InnoDB: Replace ut_a(0) with ut_error
Diffstat (limited to 'innobase/que')
-rw-r--r-- | innobase/que/que0que.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/innobase/que/que0que.c b/innobase/que/que0que.c index 73af1dc70e2..279f9fc21aa 100644 --- a/innobase/que/que0que.c +++ b/innobase/que/que0que.c @@ -485,7 +485,7 @@ que_graph_free_recursive( "que_thr struct appears corrupt; magic n %lu\n", thr->magic_n); mem_analyze_corruption((byte*)thr); - ut_a(0); + ut_error; } thr->magic_n = QUE_THR_MAGIC_FREED; @@ -597,7 +597,7 @@ que_graph_free_recursive( "que_node struct appears corrupt; type %lu\n", que_node_get_type(node)); mem_analyze_corruption((byte*)node); - ut_a(0); + ut_error; } } @@ -987,7 +987,7 @@ que_thr_move_to_run_state_for_mysql( mem_analyze_corruption((byte*)thr); - ut_a(0); + ut_error; } if (!thr->is_active) { @@ -1023,7 +1023,7 @@ que_thr_stop_for_mysql_no_error( mem_analyze_corruption((byte*)thr); - ut_a(0); + ut_error; } thr->state = QUE_THR_COMPLETED; |