From 27938d111e2f49ed3e8c39647d9a8fbc1482a686 Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Fri, 7 Oct 2016 08:55:18 +0200 Subject: Added and fixed extra compiler warnings --- src/anetz/anetz.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/anetz/anetz.c') diff --git a/src/anetz/anetz.c b/src/anetz/anetz.c index a837b73..eae8beb 100644 --- a/src/anetz/anetz.c +++ b/src/anetz/anetz.c @@ -331,7 +331,7 @@ static void anetz_timeout(struct timer *timer) } /* Call control starts call towards mobile station. */ -int call_out_setup(int callref, const char *caller_id, enum number_type caller_type, const char *dialing) +int call_out_setup(int callref, const char __attribute__((unused)) *caller_id, enum number_type __attribute__((unused)) caller_type, const char *dialing) { sender_t *sender; anetz_t *anetz; @@ -423,7 +423,7 @@ void call_out_disconnect(int callref, int cause) } /* Call control releases call toward mobile station. */ -void call_out_release(int callref, int cause) +void call_out_release(int callref, __attribute__((unused)) int cause) { sender_t *sender; anetz_t *anetz; -- cgit v1.2.3