Corrected spelling error.

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@1040 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2006-01-24 12:25:49 +00:00
parent d8a0e374a6
commit 960a02dfeb

2
xwin.c
View File

@ -802,7 +802,7 @@ translate24to32(const uint8 * data, uint8 * out, uint8 * end)
#else
REPEAT4
(
/* Only read 3 bytes. Reading 4 bytes means reading beyound buffer. */
/* Only read 3 bytes. Reading 4 bytes means reading beyond buffer. */
*((uint32 *) out) = *((uint16 *) data) + (*((uint8 *) data + 2) << 16);
out += 4;
data += 3;