[git] GpgOL - branch, master, updated. gpgol-2.0.5-12-ga6eeeaa

by Andre Heinecke cvs at cvs.gnupg.org
Thu Jan 11 13:45:00 CET 2018


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG extension for MS Outlook".

The branch, master has been updated
       via  a6eeeaaa902a80aec50fe3fbc42f09683a8b4f36 (commit)
      from  17c6532db77badd4111978b35b922ad6331d897b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a6eeeaaa902a80aec50fe3fbc42f09683a8b4f36
Author: Andre Heinecke <aheinecke at intevation.de>
Date:   Thu Jan 11 13:44:26 2018 +0100

    Fix w64 build
    
    * src/mimemaker.cpp (sink_std_write): Fix format for x64

diff --git a/src/mimemaker.cpp b/src/mimemaker.cpp
index 0bf0637..17b64d4 100644
--- a/src/mimemaker.cpp
+++ b/src/mimemaker.cpp
@@ -86,7 +86,7 @@ sink_std_write (sink_t sink, const void *data, size_t datalen)
   if (!data)
     return 0;  /* Flush - nothing to do here.  */
 
-  log_debug ("Sink write: %.*s", datalen, (char*)data);
+  log_debug ("Sink write: %.*s", (int)datalen, (char*)data);
 
   hr = stream->Write(data, datalen, NULL);
   if (hr)

-----------------------------------------------------------------------

Summary of changes:
 src/mimemaker.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GnuPG extension for MS Outlook
http://git.gnupg.org




More information about the Gnupg-commits mailing list