@@ -61,11 +61,11 @@ dlclose(handle); @throw [OFInitializationFailedException exceptionWithClass: self]; } - plugin->handle = handle; + plugin->_handle = handle; return plugin; } - init { @@ -82,12 +82,12 @@ return [super init]; } - (void)dealloc { - of_plugin_handle_t h = handle; + of_plugin_handle_t h = _handle; [super dealloc]; dlclose(h); } @end