diff options
author | knielsen@mysql.com <> | 2005-12-22 09:19:24 +0100 |
---|---|---|
committer | knielsen@mysql.com <> | 2005-12-22 09:19:24 +0100 |
commit | 7b8fa1e3c6d38efb6bccf6776eb86942e28e496f (patch) | |
tree | 090c287c3c997d28c508a7184a408156c4bf5fed /storage/example | |
parent | 4eee14fb70e521fcb24e7e7b293a8b32f729d487 (diff) | |
download | mariadb-git-7b8fa1e3c6d38efb6bccf6776eb86942e28e496f.tar.gz |
Fix compile problem in ha_example.cc
Diffstat (limited to 'storage/example')
-rw-r--r-- | storage/example/ha_example.cc | 4 |
1 files 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; |