~posulliv/drizzle/memcached_applier

« back to all changes in this revision

Viewing changes to plugin/heap/ha_heap.cc

  • Committer: Monty Taylor
  • Date: 2009-07-07 09:06:29 UTC
  • mto: (1039.68.5 mordred.nocharsets)
  • mto: This revision was merged to the branch mainline in revision 1064.
  • Revision ID: mordred@inaugust.com-20090707090629-38wu0k8s5mq20ty6
Fixed -Wmissing-declarations

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
}
84
84
 
85
85
static HeapEngine *heap_storage_engine= NULL;
86
 
int heap_init(PluginRegistry &registry)
 
86
 
 
87
static int heap_init(PluginRegistry &registry)
87
88
{
88
89
  heap_storage_engine= new HeapEngine(engine_name);
89
90
  registry.add(heap_storage_engine);
91
92
  return 0;
92
93
}
93
94
 
94
 
int heap_deinit(PluginRegistry &registry)
 
95
static int heap_deinit(PluginRegistry &registry)
95
96
{
96
97
  registry.remove(heap_storage_engine);
97
98
  delete heap_storage_engine;