From 7680f461575b63b592090dbf76c13aa7040b840b Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Fri, 29 Apr 2011 21:10:09 +1000 Subject: Deal with unused function parameters correctly This started off removing the "(void)foo" hacks to work around unused function parameters and ended up fixing every warning generated by -Wunused-parameter. Dan: rename to UNUSED. Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- lib/libalpm/dload.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'lib/libalpm/dload.c') diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c index c27854cf..1395476a 100644 --- a/lib/libalpm/dload.c +++ b/lib/libalpm/dload.c @@ -72,22 +72,17 @@ static char *get_fullpath(const char *path, const char *filename, enum sighandlers { OLD = 0, NEW = 1 }; static int dload_interrupted; -static void inthandler(int signum) +static void inthandler(int UNUSED signum) { - (void)signum; dload_interrupted = 1; } static int curl_progress(void *file, double dltotal, double dlnow, - double ultotal, double ulnow) + double UNUSED ultotal, double UNUSED ulnow) { struct fileinfo *dlfile = (struct fileinfo *)file; double current_size, total_size; - /* unused parameters */ - (void)ultotal; - (void)ulnow; - /* SIGINT sent, abort by alerting curl */ if(dload_interrupted) { return 1; -- cgit v1.2.3-24-g4f1b