diff options
author | jsorg71 <jsorg71> | 2004-10-01 23:48:09 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2004-10-01 23:48:09 +0000 |
commit | eeaff1851220ab7179c2c0f6c4cc3425a80afb91 (patch) | |
tree | bf782bf450753bdcc546f24c7418361521b62fd5 /xrdp/xrdp_rdp.c | |
parent | 5d8d552ebab10176880163dc6453a28a6fb7c6bd (diff) | |
download | xrdp-proprietary-eeaff1851220ab7179c2c0f6c4cc3425a80afb91.tar.gz xrdp-proprietary-eeaff1851220ab7179c2c0f6c4cc3425a80afb91.zip |
some oganization and macros
Diffstat (limited to 'xrdp/xrdp_rdp.c')
-rw-r--r-- | xrdp/xrdp_rdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xrdp/xrdp_rdp.c b/xrdp/xrdp_rdp.c index 2da9de87..e878aaa8 100644 --- a/xrdp/xrdp_rdp.c +++ b/xrdp/xrdp_rdp.c @@ -546,7 +546,7 @@ int xrdp_rdp_process_screen_update(struct xrdp_rdp* self, struct stream* s) in_uint16_le(s, top); in_uint16_le(s, right); in_uint16_le(s, bottom); - xrdp_wm_rect(&rect, left, top, (right - left) + 1, (bottom - top) + 1); + MAKERECT(rect, left, top, (right - left) + 1, (bottom - top) + 1); if (self->up_and_running && self->pro_layer->wm != 0) xrdp_bitmap_invalidate(self->pro_layer->wm->screen, &rect); return 0; |