From a52b285f452c8436953ed4a80bf54776fd3371d5 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 5 Aug 2015 22:02:54 -0700 Subject: [PATCH] GUAC-240: Fix typo - should be JPEG, not JOEG. --- src/libguac/protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libguac/protocol.c b/src/libguac/protocol.c index eec27d5a..2ce34588 100644 --- a/src/libguac/protocol.c +++ b/src/libguac/protocol.c @@ -159,7 +159,7 @@ static int __guac_socket_write_length_jpeg(guac_socket* socket, /* In Turbo JPEG we can use the raw BGRx scanline */ row_pointer[0] = &data[row_offset]; #else - /* For standard JOEG libraries we have to convert the + /* For standard JPEG libraries we have to convert the * scanline from 24 bit (4 byte) BGRx to 24 bit (3 byte) RGB */ unsigned char *inptr = data + row_offset; unsigned char *outptr = scanline_data;