mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
(svn r15634) -Fix (r15632): some compilers seem to warn about the return value of fscanf.
This commit is contained in:
parent
83c6b98232
commit
8c68010ace
@ -545,8 +545,9 @@ public:
|
|||||||
if (f == NULL) return false;
|
if (f == NULL) return false;
|
||||||
|
|
||||||
ScenarioIdentifier id;
|
ScenarioIdentifier id;
|
||||||
fscanf(f, "%i", &id.scenid);
|
int fret = fscanf(f, "%i", &id.scenid);
|
||||||
FioFCloseFile(f);
|
FioFCloseFile(f);
|
||||||
|
if (fret != 1) return false;
|
||||||
|
|
||||||
Md5 checksum;
|
Md5 checksum;
|
||||||
uint8 buffer[1024];
|
uint8 buffer[1024];
|
||||||
|
Loading…
Reference in New Issue
Block a user