diff options
author | jsorg71 <jsorg71> | 2010-08-09 23:02:06 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2010-08-09 23:02:06 +0000 |
commit | d83ebaa97af49224f680e7a793ae53777ec20f92 (patch) | |
tree | 49feaf19a885026cb0c8c562f493a2cce7c74c85 /libxrdp/libxrdp.c | |
parent | 0156c1448df053d4bd144f19aba4353ddebe1978 (diff) | |
download | xrdp-proprietary-d83ebaa97af49224f680e7a793ae53777ec20f92.tar.gz xrdp-proprietary-d83ebaa97af49224f680e7a793ae53777ec20f92.zip |
use do ... while (0) style for parse.h
Diffstat (limited to 'libxrdp/libxrdp.c')
-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 7e7446dd..534f838d 100644 --- a/libxrdp/libxrdp.c +++ b/libxrdp/libxrdp.c @@ -319,7 +319,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) /* B_ENDIAN doesn't work here, todo */ + out_uint8a(s, q, line_size); /* B_ENDIAN doesn't work here, todo */ out_uint8s(s, e * Bpp); } s_mark_end(s); |