mirror of
https://github.com/MariaDB/server.git
synced 2026-04-29 03:35:34 +02:00
(partially) Fix Bug#55227 Fix compiler warnings in innodb with gcc 4.6
Fix compiler warning: row/row0purge.c: In function 'row_purge_step': row/row0purge.c:660:9: error: variable 'err' set but not used [-Werror=unused-but-set-variable] (row_purge() always returns DB_SUCCESS)
This commit is contained in:
parent
a82e39e728
commit
1bdcd70fad
1 changed files with 1 additions and 1 deletions
|
|
@ -667,7 +667,7 @@ row_purge_step(
|
|||
|
||||
err = row_purge(node, thr);
|
||||
|
||||
ut_ad(err == DB_SUCCESS);
|
||||
ut_a(err == DB_SUCCESS);
|
||||
|
||||
return(thr);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue