From e284852b64cc772c6475fc9d2db35122bea090f8 Mon Sep 17 00:00:00 2001 From: Arnaud Boutonné Date: Thu, 2 Sep 2010 11:43:00 +0000 Subject: HUGO: Fix warnings svn-id: r52494 --- engines/hugo/file.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') 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; -- cgit v1.2.3