Skip to content
Snippets Groups Projects
Commit f6fde8a0 authored by Robert Loehning's avatar Robert Loehning
Browse files

Avoid warning from MSVC

parent 65ef1133
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ template <class SymbolType>
inline bool resolveSymbol(const char *libraryName, HMODULE libraryHandle, const char *symbolName, SymbolType *s, QString *errorMessage)
{
*s = 0;
FARPROC WINAPI vs = ::GetProcAddress(libraryHandle, symbolName);
FARPROC vs = ::GetProcAddress(libraryHandle, symbolName);
if (vs == 0) {
*errorMessage = QString::fromLatin1("Unable to resolve '%2' in '%1'.").arg(QString::fromAscii(symbolName), QString::fromAscii(libraryName));
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment