Fixed misplaces statis string in windows code #4793
This commit is contained in:
parent
d7043ef84b
commit
4569de5413
|
@ -34,6 +34,7 @@ typedef void (*cleanupFunc)();
|
||||||
|
|
||||||
void* g_eventTarget = NULL;
|
void* g_eventTarget = NULL;
|
||||||
IEventQueue* g_events = NULL;
|
IEventQueue* g_events = NULL;
|
||||||
|
static const char * kPre174Plugin = "Pre-1.7.v";
|
||||||
|
|
||||||
ArchPluginWindows::ArchPluginWindows()
|
ArchPluginWindows::ArchPluginWindows()
|
||||||
{
|
{
|
||||||
|
@ -69,9 +70,9 @@ ArchPluginWindows::load()
|
||||||
String filename = synergy::string::removeFileExt(*it);
|
String filename = synergy::string::removeFileExt(*it);
|
||||||
m_pluginTable.insert(std::make_pair(filename, lib));
|
m_pluginTable.insert(std::make_pair(filename, lib));
|
||||||
|
|
||||||
char * version = (char*)invoke( filename.c_str(),"version",NULL);
|
const char * version = (char*)invoke( filename.c_str(),"version",NULL);
|
||||||
if (version == NULL) {
|
if (version == NULL) {
|
||||||
version = "Pre-1.7.4";
|
version = kPre174Plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG((CLOG_DEBUG "loaded plugin: %s (%s)", (*it).c_str(),version));
|
LOG((CLOG_DEBUG "loaded plugin: %s (%s)", (*it).c_str(),version));
|
||||||
|
|
Loading…
Reference in New Issue