diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-02-11 17:07:00 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-02-11 21:44:03 +0100 |
commit | 00b070ff1478bbae773193e921c77466d8b895f7 (patch) | |
tree | aa52d161dc26c59294a5ff1c699632075eea103b /l10ntools | |
parent | 839cf2fa8cd7ea30ad5be7124cd1b26779145406 (diff) |
l10ntools: use correct string literal for ssize_t
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/gsicheck.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/gsicheck.cxx b/l10ntools/source/gsicheck.cxx index 11c9d8383fc0..76b7928ff4b5 100644 --- a/l10ntools/source/gsicheck.cxx +++ b/l10ntools/source/gsicheck.cxx @@ -75,7 +75,7 @@ void PrintMessage( rtl::OString const & aType, rtl::OString const & aMsg, rtl::O rtl::OString const & aContext, sal_Bool bPrintContext, std::size_t nLine, rtl::OString aUniqueId = rtl::OString() ) /*****************************************************************************/ { - fprintf( stdout, "%s %s, Line %lu", aType.getStr(), aPrefix.getStr(), nLine ); + fprintf( stdout, "%s %s, Line %zu", aType.getStr(), aPrefix.getStr(), nLine ); if ( !aUniqueId.isEmpty() ) fprintf( stdout, ", UniqueID %s", aUniqueId.getStr() ); fprintf( stdout, ": %s", aMsg.getStr() ); |