Function argument correction

This commit is contained in:
MissValeska 2014-08-17 07:56:02 -07:00
parent 18634081fa
commit 67a11b69a9

View File

@ -78,7 +78,7 @@ void opensocket(void) {
/* Sends a parsed response to the ntk console client. */ /* Sends a parsed response to the ntk console client. */
void send_response(char response[REQUEST_LENGTH]) { void send_response(char response[REQUEST_LENGTH], ...) {
int response_length; int response_length;
response_length = (int)strlen(response); response_length = (int)strlen(response);