Marked unused parameters in core code as such.

This commit is contained in:
Martin Mares 2004-06-05 09:10:56 +00:00
parent e98bc2ea9b
commit 7c103b1ee1
5 changed files with 5 additions and 5 deletions

View file

@ -210,7 +210,7 @@ config_do_commit(struct config *c)
} }
static void static void
config_done(void *unused) config_done(void *unused UNUSED)
{ {
struct config *c; struct config *c;

View file

@ -153,7 +153,7 @@ olock_acquire(struct object_lock *l)
} }
static void static void
olock_run_event(void *unused) olock_run_event(void *unused UNUSED)
{ {
node *n; node *n;
struct object_lock *q; struct object_lock *q;

View file

@ -25,7 +25,7 @@ password_goodness(struct password_item *i)
} }
struct password_item * struct password_item *
get_best_password(struct password_item *head, int flags) get_best_password(struct password_item *head, int flags UNUSED)
{ {
int good = -1; int good = -1;
struct password_item *best = NULL; struct password_item *best = NULL;

View file

@ -619,7 +619,7 @@ proto_notify_state(struct proto *p, unsigned ps)
} }
static void static void
proto_flush_all(void *unused) proto_flush_all(void *unused UNUSED)
{ {
struct proto *p; struct proto *p;

View file

@ -79,7 +79,7 @@ fib_hash(struct fib *f, ip_addr *a)
} }
static void static void
fib_dummy_init(struct fib_node *dummy) fib_dummy_init(struct fib_node *dummy UNUSED)
{ {
} }