Fix another pointer signedness warning

This commit is contained in:
Michael Martin
2020-06-09 18:36:39 -07:00
parent 6bcaa2a1f3
commit 6093fb467c
+1 -1
View File
@@ -389,7 +389,7 @@ LoadSummary (SUMMARY_DESC *SummPtr, void *fp)
{ {
DWORD magic; DWORD magic;
DWORD nameSize = 0; DWORD nameSize = 0;
if (!read_32s (fp, &magic)) if (!read_32 (fp, &magic))
return FALSE; return FALSE;
if (magic == SAVEFILE_TAG) if (magic == SAVEFILE_TAG)
{ {