# HG changeset patch # User reimar # Date 1200822015 0 # Node ID bda4125e24bf347935aa0dd48e7f830c2a3b26c2 # Parent 8748c4d5cd0ef711ec614ad91f4132abc00f8b7e Fix some function types from unspecified to empty argument list diff -r 8748c4d5cd0e -r bda4125e24bf libvo/w32_common.c --- 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);