diff libvo/x11_common.c @ 22886:71b3e04d0555

"()" to "(void)" function param list fixes patch from Stefan Huehner, stefan huehner org
author uau
date Sun, 01 Apr 2007 21:59:54 +0000
parents 98eaf29b5dee
children 17bf4f4b0715
line wrap: on
line diff
--- a/libvo/x11_common.c	Sun Apr 01 21:58:45 2007 +0000
+++ b/libvo/x11_common.c	Sun Apr 01 21:59:54 2007 +0000
@@ -2287,7 +2287,7 @@
  * \brief Try to enable vsync for xv.
  * \return Returns -1 if not available, 0 on failure and 1 on success.
  */
-int vo_xv_enable_vsync()
+int vo_xv_enable_vsync(void)
 {
   Atom xv_atom = xv_intern_atom_if_exists("XV_SYNC_TO_VBLANK");
   if (xv_atom == None)
@@ -2343,7 +2343,7 @@
  * Outputs the content of |ck_handling| as a readable message.
  *
  */
-void vo_xv_print_ck_info()
+void vo_xv_print_ck_info(void)
 {
   mp_msg( MSGT_VO, MSGL_V, "[xv common] " );
 
@@ -2411,7 +2411,7 @@
  * NOTE: If vo_colorkey has bits set after the first 3 low order bytes
  *       we don't draw anything as this means it was forced to off.
  */
-int vo_xv_init_colorkey()
+int vo_xv_init_colorkey(void)
 {
   Atom xv_atom;
   int rez;