# HG changeset patch # User diego # Date 1068217949 0 # Node ID 147f31870df698af6dbc3419c72ee8b9ef4203d8 # Parent 38ef94bea3b8dd836be7f6cf1130dbbbae0211f4 Change conflicting function declaration between .c and .h file, causing a compilation failure on Cygwin, checked by Sascha Sommer. diff -r 38ef94bea3b8 -r 147f31870df6 libvo/vosub_vidix.h --- a/libvo/vosub_vidix.h Fri Nov 07 09:57:06 2003 +0000 +++ b/libvo/vosub_vidix.h Fri Nov 07 15:12:29 2003 +0000 @@ -22,7 +22,7 @@ int vidix_stop(void); void vidix_term( void ); uint32_t vidix_control(uint32_t request, void *data, ...); -uint32_t vidix_query_fourcc(unsigned fourcc); +uint32_t vidix_query_fourcc(uint32_t fourcc); uint32_t vidix_draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y); uint32_t vidix_draw_frame(uint8_t *src[]);