diff --git a/Projects/Sources/importer.h b/Projects/Sources/importer.h index a7b00fe..2c1e0de 100644 --- a/Projects/Sources/importer.h +++ b/Projects/Sources/importer.h @@ -61,7 +61,7 @@ T tryImportSymbol(const char *funcName) template T importSymbol(const char *funcName) { - T result = tryImportSymbol(funcName); + T result = tryImportSymbol(funcName); if(result) return result; fprintf(stderr, "Can't get handle to %s in all loaded modules.\n", funcName);