From 3a5621c2aa3931be608508d4fadc42c2a09cb251 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Wed, 12 Dec 2012 16:35:55 +0100 Subject: Trivial 64-bit warning fixes. --- src/mailbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mailbox.cpp') diff --git a/src/mailbox.cpp b/src/mailbox.cpp index dfdccad7..cdfbaf50 100644 --- a/src/mailbox.cpp +++ b/src/mailbox.cpp @@ -377,7 +377,7 @@ void mailbox::generateImpl(utility::outputStream& os, const string::size_type ma // and/or contain the special chars. bool forceEncode = false; - for (int w = 0 ; !forceEncode && w != m_name.getWordCount() ; ++w) + for (size_t w = 0 ; !forceEncode && w != m_name.getWordCount() ; ++w) { if (m_name.getWordAt(w)->getCharset() == charset(charsets::US_ASCII)) { -- cgit v1.2.3