comphelper/source/misc/storagehelper.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a9a4c26ed1365ffa089654fefc8fa2f29862b6c7
Author: Thorsten Behrens <thorsten.behr...@cib.de>
Date:   Thu Dec 7 19:38:10 2017 +0100

    comphelper: fix windows build
    
    Change-Id: I3241426674050c027e1b000b33fb284525a58cbb

diff --git a/comphelper/source/misc/storagehelper.cxx 
b/comphelper/source/misc/storagehelper.cxx
index 7fa46554b595..36641485fe2e 100644
--- a/comphelper/source/misc/storagehelper.cxx
+++ b/comphelper/source/misc/storagehelper.cxx
@@ -494,7 +494,7 @@ uno::Sequence< beans::NamedValue > 
OStorageHelper::CreateGpgPackageEncryptionDat
         // ctx is setup now, let's encrypt the lot!
         GpgME::Data plain(
             reinterpret_cast<const char*>(aVector.getConstArray()),
-            aVector.getLength(), false);
+            size_t(aVector.getLength()), false);
         GpgME::Data cipher;
 
         GpgME::EncryptionResult crypt_res = ctx->encrypt(
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to