diff options
Diffstat (limited to '')
-rw-r--r-- | src/interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interface.c b/src/interface.c index 0381404bf..3f803d057 100644 --- a/src/interface.c +++ b/src/interface.c @@ -332,10 +332,10 @@ static int processLineOfInput(Interface * interface) ERROR("interface %i: command " "list size (%i) is " "larger than the max " - "(%i)\n", + "(%li)\n", interface->num, interface->cmd_list_size, - interface_max_command_list_size); + (long)interface_max_command_list_size); closeInterface(interface); ret = COMMAND_RETURN_CLOSE; } else |