mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 19:49:50 +00:00
Fix function pointer variable declaration in __wine_process_init().
This commit is contained in:
parent
2f878e518b
commit
9b4b21b7b0
1 changed files with 1 additions and 1 deletions
|
@ -1923,7 +1923,7 @@ void __wine_process_init( int argc, char *argv[] )
|
|||
WINE_MODREF *wm;
|
||||
NTSTATUS status;
|
||||
ANSI_STRING func_name;
|
||||
void (DECLSPEC_NORETURN *init_func)();
|
||||
void (* DECLSPEC_NORETURN init_func)();
|
||||
|
||||
/* setup the server connection */
|
||||
wine_server_init_process();
|
||||
|
|
Loading…
Reference in a new issue