From 7b8fa1e3c6d38efb6bccf6776eb86942e28e496f Mon Sep 17 00:00:00 2001 From: "knielsen@mysql.com" <> Date: Thu, 22 Dec 2005 09:19:24 +0100 Subject: [PATCH] Fix compile problem in ha_example.cc --- storage/example/ha_example.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storage/example/ha_example.cc b/storage/example/ha_example.cc index 0470f95e082..10eadf2c7a9 100644 --- a/storage/example/ha_example.cc +++ b/storage/example/ha_example.cc @@ -729,8 +729,8 @@ mysql_declare_plugin example_hton.name, "Brian Aker, MySQL AB", "Example Storage Engine", - tina_init_func, /* Plugin Init */ - tina_done_func, /* Plugin Deinit */ + example_init_func, /* Plugin Init */ + example_done_func, /* Plugin Deinit */ 0x0001 /* 0.1 */, } mysql_declare_plugin_end;