diff options
author | Martin Mares <mj@ucw.cz> | 2004-06-05 11:26:48 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2004-06-05 11:26:48 +0200 |
commit | d7390312d4e322e0dac3fefddd6033cb255933a4 (patch) | |
tree | 9eb636b01a0d16955e7846586602ac049215c1ad /client | |
parent | 6578a60493f9dbf83d6485ac99635094bef2af7d (diff) | |
download | bird-d7390312d4e322e0dac3fefddd6033cb255933a4.tar bird-d7390312d4e322e0dac3fefddd6033cb255933a4.zip |
Unused parameters in the client.
Diffstat (limited to 'client')
-rw-r--r-- | client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/client.c b/client/client.c index 8fadc6a..d65ea06 100644 --- a/client/client.c +++ b/client/client.c @@ -141,7 +141,7 @@ input_stop_list(void) /* Reprint the currently edited line after listing */ } static int -input_complete(int arg, int key) +input_complete(int arg UNUSED, int key UNUSED) { static int complete_flag; char buf[256]; @@ -166,7 +166,7 @@ input_complete(int arg, int key) } static int -input_help(int arg, int key) +input_help(int arg, int key UNUSED) { int i = 0; |