diff options
Diffstat (limited to 'src/os/macosx')
-rw-r--r-- | src/os/macosx/macos.mm | 2 | ||||
-rw-r--r-- | src/os/macosx/splash.cpp | 4 | ||||
-rw-r--r-- | src/os/macosx/splash.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/os/macosx/macos.mm b/src/os/macosx/macos.mm index 33f296325..6d25cee77 100644 --- a/src/os/macosx/macos.mm +++ b/src/os/macosx/macos.mm @@ -24,7 +24,7 @@ void ToggleFullScreen(bool fs); -static char *GetOSString(void) +static char *GetOSString() { static char buffer[175]; const char* CPU; diff --git a/src/os/macosx/splash.cpp b/src/os/macosx/splash.cpp index 46a19b1a6..5933b808d 100644 --- a/src/os/macosx/splash.cpp +++ b/src/os/macosx/splash.cpp @@ -26,7 +26,7 @@ static void PNGAPI png_my_warning(png_structp png_ptr, png_const_charp message) DEBUG(misc, 1, "[libpng] warning: %s - %s", message, (char *)png_get_error_ptr(png_ptr)); } -void DisplaySplashImage(void) +void DisplaySplashImage() { png_byte header[8]; FILE *f; @@ -139,6 +139,6 @@ void DisplaySplashImage(void) #else /* WITH_PNG */ -void DisplaySplashImage(void) {} +void DisplaySplashImage() {} #endif /* WITH_PNG */ diff --git a/src/os/macosx/splash.h b/src/os/macosx/splash.h index 1bc4fa53c..c8ea58c69 100644 --- a/src/os/macosx/splash.h +++ b/src/os/macosx/splash.h @@ -9,7 +9,7 @@ extern "C" { #endif //__cplusplus - void DisplaySplashImage(void); + void DisplaySplashImage(); #ifdef __cplusplus } |