summaryrefslogtreecommitdiffstats
path: root/xrdp/xrdp_types.h
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2014-03-15 21:59:16 -0700
committerJay Sorg <jay.sorg@gmail.com>2014-03-15 21:59:16 -0700
commitda0d0e687aa25beec2f80c247c51a31b148dbf46 (patch)
treefbd4f6b64985adae2c31a95ee26222e246845934 /xrdp/xrdp_types.h
parent53df4335eb3c02d07ffe1dc5a714263c49040a80 (diff)
downloadxrdp-proprietary-da0d0e687aa25beec2f80c247c51a31b148dbf46.tar.gz
xrdp-proprietary-da0d0e687aa25beec2f80c247c51a31b148dbf46.zip
reduce the memory needed for crc16 bitmap cache lists
Diffstat (limited to 'xrdp/xrdp_types.h')
-rw-r--r--xrdp/xrdp_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xrdp/xrdp_types.h b/xrdp/xrdp_types.h
index 082c3e58..002e5c2c 100644
--- a/xrdp/xrdp_types.h
+++ b/xrdp/xrdp_types.h
@@ -241,7 +241,7 @@ struct xrdp_cache
int lru_reset[XRDP_MAX_BITMAP_CACHE_ID];
/* crc optimize */
- struct list *crc16[XRDP_MAX_BITMAP_CACHE_ID][64 * 1024];
+ struct list16 crc16[XRDP_MAX_BITMAP_CACHE_ID][64 * 1024];
int use_bitmap_comp;
int cache1_entries;