8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 00:03:03 +01:00
This commit is contained in:
asfernandes 2007-03-28 02:25:53 +00:00
parent 5fc0a2e55f
commit 21f3551b1e

View File

@ -74,7 +74,7 @@ ModuleLoader::Module *ModuleLoader::loadModule(const Firebird::PathName& modPath
/* Create an object file image from the given path */
retVal = NSCreateObjectFileImageFromFile(modPath.c_str(), &image);
if(retVal != NSObjectFileImageSuccess)
if (retVal != NSObjectFileImageSuccess)
{
switch(retVal)
{
@ -137,7 +137,7 @@ DarwinModule::~DarwinModule()
void *DarwinModule::findSymbol(const Firebird::string& symName)
{
NSSymbol symbol;
NSSymbol symbol;
symbol = NSLookupSymbolInModule(module, symName.c_str());
if (symbol == NULL)