changeset 25785:bda4125e24bf

Fix some function types from unspecified to empty argument list
author reimar
date Sun, 20 Jan 2008 09:40:15 +0000
parents 8748c4d5cd0e
children 2734c7331d4e
files libvo/w32_common.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/w32_common.c	Sun Jan 20 09:38:18 2008 +0000
+++ b/libvo/w32_common.c	Sun Jan 20 09:40:15 2008 +0000
@@ -192,7 +192,7 @@
     aspect_save_screenres(vo_screenwidth, vo_screenheight);
 }
 
-static void updateScreenProperties() {
+static void updateScreenProperties(void) {
     DEVMODE dm;
     dm.dmSize = sizeof dm;
     dm.dmDriverExtra = 0;
@@ -391,7 +391,7 @@
     createRenderingContext();
 }
 
-void vo_w32_border() {
+void vo_w32_border(void) {
     vo_border = !vo_border;
     createRenderingContext();
 }
@@ -404,7 +404,7 @@
     }
 }
 
-void vo_w32_uninit() {
+void vo_w32_uninit(void) {
     mp_msg(MSGT_VO, MSGL_V, "vo: win32: uninit\n");
     resetMode();
     ShowCursor(1);