@@ -40,11 +40,11 @@ + pluginFromFile: (OFString*)path { OFAutoreleasePool *pool; OFMutableString *file; of_plugin_handle_t handle; - OFPlugin *(*init_plugin)(); + OFPlugin *(*initPlugin)(); OFPlugin *plugin; pool = [[OFAutoreleasePool alloc] init]; file = [OFMutableString stringWithString: path]; [file appendCString: PLUGIN_SUFFIX]; @@ -52,12 +52,12 @@ if ((handle = dlopen([file cString], RTLD_LAZY)) == NULL) @throw [OFInitializationFailedException newWithClass: self]; [pool release]; - init_plugin = (OFPlugin*(*)())dlsym(handle, "init_plugin"); - if (init_plugin == NULL || (plugin = init_plugin()) == nil) { + initPlugin = (OFPlugin*(*)())dlsym(handle, "init_plugin"); + if (initPlugin == NULL || (plugin = initPlugin()) == nil) { dlclose(handle); @throw [OFInitializationFailedException newWithClass: self]; } plugin->handle = handle;