diff options
| author | Vincent Richard <[email protected]> | 2012-12-12 16:35:55 +0100 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2012-12-12 16:35:55 +0100 |
| commit | 3a5621c2aa3931be608508d4fadc42c2a09cb251 (patch) | |
| tree | a39a344cbacdc9524122536ecbf8866e225e8230 /src/mdn/receivedMDNInfos.cpp | |
| parent | Do not re-encode data if it is already encoded (thanks to Mehmet Bozkurt). (diff) | |
| download | vmime-3a5621c2aa3931be608508d4fadc42c2a09cb251.tar.gz vmime-3a5621c2aa3931be608508d4fadc42c2a09cb251.zip | |
Trivial 64-bit warning fixes.
Diffstat (limited to 'src/mdn/receivedMDNInfos.cpp')
| -rw-r--r-- | src/mdn/receivedMDNInfos.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mdn/receivedMDNInfos.cpp b/src/mdn/receivedMDNInfos.cpp index f97a58d4..1416071c 100644 --- a/src/mdn/receivedMDNInfos.cpp +++ b/src/mdn/receivedMDNInfos.cpp @@ -81,7 +81,7 @@ void receivedMDNInfos::extract() { const ref <const body> bdy = m_msg->getBody(); - for (int i = 0 ; i < bdy->getPartCount() ; ++i) + for (size_t i = 0 ; i < bdy->getPartCount() ; ++i) { const ref <const bodyPart> part = bdy->getPartAt(i); |
