Fixed: #1193 Clean up code.

This commit is contained in:
dnk-88 2011-10-23 00:32:49 +03:00
parent 38997d34f2
commit dab8c80928

View file

@ -64,14 +64,14 @@ PluginSpec::PluginSpec()
// Compilation mode specific suffixes
#ifdef NL_OS_WINDOWS
# if defined(NL_DEBUG)
m_suffix = "_d.dll";
m_suffix = "_d.dll";
# elif defined(NL_RELEASE)
m_suffix = "_r.dll";
m_suffix = "_r.dll";
# else
# error "Unknown compilation mode, can't build suffix"
# endif
#elif defined (NL_OS_UNIX)
m_suffix = ".so";
m_suffix = ".so";
#else
# error "You must define the lib suffix for your platform"
#endif