From 4a0fe7348aa270702d830f77b1707c1b93558e7a Mon Sep 17 00:00:00 2001 From: "joerg@mysql.com" <> Date: Fri, 6 Jan 2006 12:21:15 +0100 Subject: [PATCH] Compile fix: An "int" function had accidentally lost its "return 0;", re-add it. --- sql/handler.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/sql/handler.cc b/sql/handler.cc index d36db3281b3..cff7b21ddc2 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -1178,6 +1178,7 @@ int ha_release_temporary_latches(THD *thd) #ifdef WITH_INNOBASE_STORAGE_ENGINE innobase_release_temporary_latches(thd); #endif + return 0; }