diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hugo/file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp index 150ad2d2b8..2a76d13ee7 100644 --- a/engines/hugo/file.cpp +++ b/engines/hugo/file.cpp @@ -827,7 +827,7 @@ void FileManager::readConfig() { if (f.open(path)) { // If config format changed, ignore it and use defaults if (f.size() != sizeof(_config)) { - warning("Incompatible %s: file size:%d expected size: %d. Skipping loading.", CONFIGFILE, f.size(), sizeof(_config)); + warning("Incompatible %s: file size: %ld expected size: %ld. Skipping loading.", CONFIGFILE, f.size(), sizeof(_config)); } else { if (f.read(&_config, sizeof(_config)) != sizeof(_config)) _config = tmpConfig; |