Fixed typo.

This commit is contained in:
Michael Jumper 2012-09-05 17:03:56 -07:00
parent c57a61122b
commit 9a812c6732

View File

@ -551,7 +551,7 @@ guac_instruction* guac_instruction_read(guac_socket* socket,
/* Error if expected comma is not present */ /* Error if expected comma is not present */
else if (terminator != ',') { else if (terminator != ',') {
guac_error = GUAC_STATUS_BAD_ARGUMENT; 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; return NULL;
} }