From: Alan T. DeKok Date: Wed, 20 Feb 2013 04:35:10 +0000 (-0500) Subject: Fix compiler warning X-Git-Tag: release_3_0_0_beta1~995 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca584492705c09fd43e6f88200ff930a4b369fed;p=thirdparty%2Ffreeradius-server.git Fix compiler warning --- diff --git a/src/modules/rlm_example/rlm_example.c b/src/modules/rlm_example/rlm_example.c index 603e58c5b5a..2162aea9a2f 100644 --- a/src/modules/rlm_example/rlm_example.c +++ b/src/modules/rlm_example/rlm_example.c @@ -194,7 +194,7 @@ static rlm_rcode_t example_checksimul(void *instance, REQUEST *request) * Only free memory we allocated. The strings allocated via * cf_section_parse() do not need to be freed. */ -static int example_detach(void *instance) +static int example_detach(UNUSED void *instance) { /* free things here */ return 0;