mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Compile fix: An "int" function had accidentally lost its "return 0;", re-add it.
sql/handler.cc: An "int" function should explicitly return a value (Sun compilers insist on it): Re-add the original "return 0;" (Heikki 1.82.1.12) which got lost by accident.
This commit is contained in:
parent
de70d4c90a
commit
f2f597f808
1 changed files with 1 additions and 0 deletions
|
@ -1178,6 +1178,7 @@ int ha_release_temporary_latches(THD *thd)
|
|||
#ifdef WITH_INNOBASE_STORAGE_ENGINE
|
||||
innobase_release_temporary_latches(thd);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue