[Scummvm-git-logs] scummvm master -> 07ce549664b8c652a6045fb0eee5bfc575d19039
digitall
547637+digitall at users.noreply.github.com
Sat Oct 5 03:10:42 CEST 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
07ce549664 NETWORKING: Fix Signed vs. Unsigned Compiler Warnings
Commit: 07ce549664b8c652a6045fb0eee5bfc575d19039
https://github.com/scummvm/scummvm/commit/07ce549664b8c652a6045fb0eee5bfc575d19039
Author: D G Turner (digitall at scummvm.org)
Date: 2019-10-05T02:07:54+01:00
Commit Message:
NETWORKING: Fix Signed vs. Unsigned Compiler Warnings
Changed paths:
backends/networking/sdl_net/reader.h
diff --git a/backends/networking/sdl_net/reader.h b/backends/networking/sdl_net/reader.h
index 4955edf..60557fd 100644
--- a/backends/networking/sdl_net/reader.h
+++ b/backends/networking/sdl_net/reader.h
@@ -111,7 +111,7 @@ class Reader {
uint32 bytesLeft() const;
public:
- static const uint32 SUSPICIOUS_HEADERS_SIZE = 1024 * 1024; // 1 MB is really a lot
+ static const int32 SUSPICIOUS_HEADERS_SIZE = 1024 * 1024; // 1 MB is really a lot
Reader();
~Reader();
More information about the Scummvm-git-logs
mailing list