server/bulkcrypto.c: Fix printf argument-type bug (64-bit specific).
authorMark Wooding <mdw@distorted.org.uk>
Wed, 6 Sep 2017 18:52:26 +0000 (19:52 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 14 Jun 2018 09:34:25 +0000 (10:34 +0100)
server/bulkcrypto.c

index 3f2213e..7d754cd 100644 (file)
@@ -536,7 +536,8 @@ static void iiv_tracealgs(const bulkalgs *aa)
   const iiv_algs *a = (const iiv_algs *)aa;
 
   gencomp_tracealgs(&a->ga);
-  trace(T_CRYPTO, "crypto: blkc = %.*s", strlen(a->b->name) - 4, a->b->name);
+  trace(T_CRYPTO,
+       "crypto: blkc = %.*s", (int)strlen(a->b->name) - 4, a->b->name);
 }
 #endif