]> git.saurik.com Git - wxWidgets.git/commitdiff
Correct a print format specifier mismatch in wxFileConfig::Parse().
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 Aug 2010 11:35:49 +0000 (11:35 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 Aug 2010 11:35:49 +0000 (11:35 +0000)
Pass an int and not a size_t to a %d.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65209 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/fileconf.cpp

index 286c03955da6e39169bacf87d81528ca5111e136..1eabee0e1a3f11825d9b951a37bd031a4a169b36 100644 (file)
@@ -661,7 +661,7 @@ void wxFileConfig::Parse(const wxTextBuffer& buffer, bool bLocal)
           // which is exactly what we want.
           else if ( !bLocal || pEntry->IsLocal() ) {
             wxLogWarning(_("file '%s', line %d: key '%s' was first found at line %d."),
           // which is exactly what we want.
           else if ( !bLocal || pEntry->IsLocal() ) {
             wxLogWarning(_("file '%s', line %d: key '%s' was first found at line %d."),
-                         buffer.GetName(), n + 1, strKey.c_str(), pEntry->Line());
+                         buffer.GetName(), (int)n + 1, strKey.c_str(), pEntry->Line());
 
           }
         }
 
           }
         }