From 38542c3986ae0809a7a2500802754b9163b70ad3 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 3 Oct 2007 19:54:30 +0000 Subject: [PATCH] Removed double return error --- src/osgDB/Registry.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgDB/Registry.cpp b/src/osgDB/Registry.cpp index f39bb9c44..8a41859af 100644 --- a/src/osgDB/Registry.cpp +++ b/src/osgDB/Registry.cpp @@ -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;