From: Alan T. DeKok Date: Wed, 20 Feb 2013 04:35:10 +0000 (-0500) Subject: Fix compiler warning X-Git-Tag: debian/3.0.0git+dfsg+moonshot3-2~168 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=ca584492705c09fd43e6f88200ff930a4b369fed;p=freeradius.git Fix compiler warning --- diff --git a/src/modules/rlm_example/rlm_example.c b/src/modules/rlm_example/rlm_example.c index 603e58c..2162aea 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;