8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 21:23:03 +01:00

Fix typo in debug routine

This commit is contained in:
paulbeach 2014-04-24 11:43:38 +00:00
parent e938146420
commit f1708f2b63

View File

@ -83,7 +83,7 @@ ModuleLoader::Module* ModuleLoader::loadModule(const Firebird::PathName& modPath
if (module == NULL) if (module == NULL)
{ {
#ifdef DEBUG_LOADER #ifdef DEBUG_LOADER
fprintf(stderr, "load error: %s: %s\n", mod_path.c_str(), dlerror()); fprintf(stderr, "load error: %s: %s\n", modPath.c_str(), dlerror());
#endif // DEBUG_LOADER #endif // DEBUG_LOADER
return 0; return 0;
} }