Skip to content

Commit

Permalink
Fix build on 32bit
Browse files Browse the repository at this point in the history
  • Loading branch information
metalefty committed Sep 26, 2024
1 parent 13f53ed commit ec7c24d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/rdpClientCon.c
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ rdpClientConResizeAllMemoryAreas(rdpPtr dev, rdpClientCon *clientCon)
dev->msFrameInterval = MIN_MS_BETWEEN_FRAMES;
break;
}
LLOGLN(0, (" msFrameInterval %d", dev->msFrameInterval));
LLOGLN(0, (" msFrameInterval %ld", (long)dev->msFrameInterval));

rdpClientConAllocateSharedMemory(clientCon, bytes);

Expand Down

0 comments on commit ec7c24d

Please sign in to comment.