[Libreoffice-commits] .: tools/bootstrp

Caolán McNamara caolan at kemper.freedesktop.org
Thu Jun 16 02:13:48 PDT 2011


 tools/bootstrp/md5.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ad44a3916afafa3e3b990da67baf584b83405ba5
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Thu Jun 16 10:13:41 2011 +0100

    fix tinderbox

diff --git a/tools/bootstrp/md5.cxx b/tools/bootstrp/md5.cxx
index d055f42..0ea738e 100644
--- a/tools/bootstrp/md5.cxx
+++ b/tools/bootstrp/md5.cxx
@@ -138,7 +138,7 @@ rtlDigestError calc_md5_checksum(const char *filename, rtl::OString &rChecksum)
             {
                 if ( checksum[i] < 16 )
                     aChecksumBuf.append('0');
-                aChecksumBuf.append(checksum[i], 16);
+                aChecksumBuf.append(static_cast<sal_Int32>(checksum[i]), 16);
             }
         }
 


More information about the Libreoffice-commits mailing list