Skip to content

Commit

Permalink
fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarning committed Aug 22, 2017
1 parent e99f628 commit a22f86e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void windows_service_main( int argc, char **argv ) {

int windows_service_start( void (*func)() ) {
static SERVICE_TABLE_ENTRY services[] = {
{ (const char*) MAIN_SRVNAME, (LPSERVICE_MAIN_FUNCTIONA) windows_service_main },
{ (char*) MAIN_SRVNAME, (LPSERVICE_MAIN_FUNCTIONA) windows_service_main },
{ NULL, NULL }
};

Expand Down

0 comments on commit a22f86e

Please sign in to comment.