X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffreeglut_init.c;h=d68341c0781fb4e9fb8552118d5b2210d514e808;hb=54e835334fb3e039ad92236fc88801ec485c8152;hp=ab6a1d2a973d616f16c13b5d12c6dd2ecb2d59b4;hpb=9786fb052e94dc0a4c0a40aaa3133d35a5d7061f;p=freeglut diff --git a/src/freeglut_init.c b/src/freeglut_init.c index ab6a1d2..d68341c 100644 --- a/src/freeglut_init.c +++ b/src/freeglut_init.c @@ -68,7 +68,7 @@ SFG_State fgState = { { -1, -1, FALSE }, /* Position */ 0, /* FPSInterval */ 0, /* SwapCount */ 0, /* SwapTime */ -#ifdef TARGET_HOST_WIN32 +#if TARGET_HOST_WIN32 { 0, FALSE }, /* Time */ #else { { 0, 0 }, FALSE }, @@ -287,7 +287,7 @@ void fgDeinitialize( void ) /* * Delete all the timers and their storage list */ - while ( (timer = fgState.Timers.First) != NULL ) + while ( (timer = (SFG_Timer *)fgState.Timers.First) != NULL ) { fgListRemove ( &fgState.Timers, &timer->Node ) ; free ( timer ) ; @@ -985,7 +985,7 @@ void FGAPIENTRY glutInitDisplayString( const char* displayMode ) */ char *token ; int len = strlen ( displayMode ) ; - char *buffer = malloc ( (len+1) * sizeof(char) ) ; + char *buffer = (char *)malloc ( (len+1) * sizeof(char) ) ; memcpy ( buffer, displayMode, len ) ; buffer[len] = '\0' ;