From 9a812c673296e2fb990f733edb546f5ead4c9aa0 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 5 Sep 2012 17:03:56 -0700 Subject: [PATCH] Fixed typo. --- libguac/src/protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguac/src/protocol.c b/libguac/src/protocol.c index 0846181e..bfb7b1cd 100644 --- a/libguac/src/protocol.c +++ b/libguac/src/protocol.c @@ -551,7 +551,7 @@ guac_instruction* guac_instruction_read(guac_socket* socket, /* Error if expected comma is not present */ else if (terminator != ',') { guac_error = GUAC_STATUS_BAD_ARGUMENT; - guac_error_message = "Element terminator of instructioni was not ';' nor ','"; + guac_error_message = "Element terminator of instruction was not ';' nor ','"; return NULL; }