# HG changeset patch # User diego # Date 1222202310 0 # Node ID 905e9c7ac8627196c303573a6434047da5d0d6ad # Parent 788490ed5ce2333c27c983ac73f49f12960fd6c4 Remove pointless and gcc-specific __attribute__ ((unused)). diff -r 788490ed5ce2 -r 905e9c7ac862 vidix/ivtv_vid.c --- a/vidix/ivtv_vid.c Sun Sep 21 22:56:53 2008 +0000 +++ b/vidix/ivtv_vid.c Tue Sep 23 20:38:30 2008 +0000 @@ -90,7 +90,7 @@ }; static void de_macro_y(unsigned char *src, unsigned char *dst, - unsigned int w, unsigned int h, int src_x, int src_y, int height __attribute__ ((unused)), int width) + unsigned int w, unsigned int h, int src_x, int src_y, int height, int width) { unsigned int x, y, i; unsigned char *dst_2; @@ -221,7 +221,7 @@ } } -int ivtv_probe(int verbose,int force __attribute__ ((unused))) +int ivtv_probe(int verbose) { unsigned char fb_number = 0; char *device_name = NULL; @@ -356,7 +356,7 @@ return 0; } -int ivtv_init(const char *args __attribute__ ((unused))) +int ivtv_init(void) { if(ivtv_verbose) printf(IVTV_MSG"init\n");