diff options
author | jsorg71 <jsorg71> | 2005-07-10 19:17:09 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2005-07-10 19:17:09 +0000 |
commit | d349f6920a4d97632d0216fbd0d48de50498eb4b (patch) | |
tree | 4677e525c731873e0d454b6337d18fa6734eaae2 /libxrdp | |
parent | 196bfa81d6eb601d35024f117e8aa988657c8569 (diff) | |
download | xrdp-proprietary-d349f6920a4d97632d0216fbd0d48de50498eb4b.tar.gz xrdp-proprietary-d349f6920a4d97632d0216fbd0d48de50498eb4b.zip |
some more big endian fixes
Diffstat (limited to 'libxrdp')
-rw-r--r-- | libxrdp/libxrdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libxrdp/libxrdp.c b/libxrdp/libxrdp.c index 263a99ae..5a8f3837 100644 --- a/libxrdp/libxrdp.c +++ b/libxrdp/libxrdp.c @@ -308,7 +308,7 @@ libxrdp_send_bitmap(struct xrdp_session* session, int width, int height, for (j = 0; j < lines_sending; j++) { q = q - line_size; - out_uint8a(s, q, line_size) + out_uint8a(s, q, line_size) /* B_ENDIAN doesn't work here, todo */ out_uint8s(s, e * Bpp); } s_mark_end(s); |