Fix misreported cache size

Printed offscreen bitmap cache size is in bytes, not MB.

(cherry picked from commit 3bfa59472e)
This commit is contained in:
matt335672 2024-08-16 11:18:15 +01:00
parent 82bec9d1dc
commit 6a1a056cd5
1 changed files with 1 additions and 1 deletions

View File

@ -489,7 +489,7 @@ xrdp_caps_process_offscreen_bmpcache(struct xrdp_rdp *self, struct stream *s,
in_uint16_le(s, i32);
self->client_info.offscreen_cache_entries = i32;
LOG(LOG_LEVEL_INFO, "xrdp_process_offscreen_bmpcache: support level %d "
"cache size %d MB cache entries %d",
"cache size %d bytes cache entries %d",
self->client_info.offscreen_support_level,
self->client_info.offscreen_cache_size,
self->client_info.offscreen_cache_entries);