msvcr90: Fix function pointer declaration that confuses winapi_extract.
authorAlexandre Julliard <julliard@winehq.org>
Fri, 15 Apr 2011 19:02:42 +0000 (21:02 +0200)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 15 Apr 2011 19:02:42 +0000 (21:02 +0200)
dlls/msvcr90/msvcr90.c

index f2adb0484b9f4f30175e2f027840e3a5b671df48..fe563e377711870ee4d5ad1924360c5f74b82d68 100644 (file)
@@ -66,8 +66,8 @@ typedef struct __type_info
   char        mangled[32]; /* Variable length, but we declare it large enough for static RTTI */
 } type_info;
 
-typedef void* (*__cdecl malloc_func_t)(size_t);
-typedef void  (*__cdecl free_func_t)(void*);
+typedef void* (__cdecl *malloc_func_t)(size_t);
+typedef void  (__cdecl *free_func_t)(void*);
 
 extern char* __cdecl __unDName(char *,const char*,int,malloc_func_t,free_func_t,unsigned short int);