summaryrefslogtreecommitdiff
path: root/external/firebird/Wincompatible-function-pointer-types.patch
blob: d5482bdcf2c20b640f73d957b8fba9d39447ffcd (plain)
1
2
3
4
5
6
7
8
9
10
11
--- extern/cloop/src/tests/test1/CTest.c
+++ extern/cloop/src/tests/test1/CTest.c
@@ -402,7 +402,7 @@
 	struct CALC_IFactory* (*createFactory)();
 
 #ifdef WIN32
-	createFactory = (struct Factory* (*)()) GetProcAddress(library, "createFactory");
+	createFactory = (struct CALC_IFactory* (*)()) GetProcAddress(library, "createFactory");
 #else
 	createFactory = dlsym(library, "createFactory");
 #endif