mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 12:48:43 +00:00
Unused parameters in the client.
This commit is contained in:
parent
6578a60493
commit
d7390312d4
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user