# HG changeset patch # User diego # Date 1209845224 0 # Node ID e183e2464abc6eaf7a3d8fb254a564b5454efabb # Parent f2c7d68935d4ea61092fcf7447f950191e8c3315 cosmetics: Remove unused argc/argv parameters from test programs. diff -r f2c7d68935d4 -r e183e2464abc configure --- a/configure Sat May 03 20:03:36 2008 +0000 +++ b/configure Sat May 03 20:07:04 2008 +0000 @@ -3598,8 +3598,7 @@ cat > $TMPC < #include -int main(int argc, const char * argv[]) -{ +int main(void) { io_iterator_t hidObjectIterator = (io_iterator_t)NULL; CFMutableDictionaryRef hidMatchDictionary; IOReturn ioReturnValue; @@ -4734,7 +4733,7 @@ if test "$_sdl" = auto || test "$_sdl" = yes ; then cat > $TMPC << EOF #include -int main(int argc, char *argv[]) { +int main(void) { SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE); return 0; }