Removed double return error

This commit is contained in:
Robert Osfield 2007-10-03 19:54:30 +00:00
parent 5fe003d1a2
commit 38542c3986

View File

@ -609,9 +609,9 @@ std::string Registry::createLibraryNameForNodeKit(const std::string& name)
return "lib"+name+".dll";
#elif defined(WIN32)
#ifdef _DEBUG
return return name+"d.dll";
return name+"d.dll";
#else
return return name+".dll";
return name+".dll";
#endif
#elif macintosh
return name;