aboutsummaryrefslogtreecommitdiff
path: root/ui/vnc-enc-zrle.c.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ui/vnc-enc-zrle.c.inc')
-rw-r--r--ui/vnc-enc-zrle.c.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/vnc-enc-zrle.c.inc b/ui/vnc-enc-zrle.c.inc
index c107d8affc..a8ca37d05e 100644
--- a/ui/vnc-enc-zrle.c.inc
+++ b/ui/vnc-enc-zrle.c.inc
@@ -110,7 +110,7 @@ static void ZRLE_ENCODE_TILE(VncState *vs, ZRLE_PIXEL *data, int w, int h,
ZRLE_PIXEL *end = ptr + h * w;
*end = ~*(end-1); /* one past the end is different so the while loop ends */
- /* Real limit is 127 but we wan't a way to know if there is more than 127 */
+ /* Real limit is 127 but we want a way to know if there is more than 127 */
palette_init(palette, 256, ZRLE_BPP);
while (ptr < end) {