[master] 731c2182a Adjust printf to suit previous commit

Poul-Henning Kamp phk at FreeBSD.org
Tue Feb 5 06:40:08 UTC 2019


commit 731c2182a7afe20eb22931ff224041c4b96a6a82
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Tue Feb 5 06:39:39 2019 +0000

    Adjust printf to suit previous commit

diff --git a/lib/libvmod_blob/vmod_blob.c b/lib/libvmod_blob/vmod_blob.c
index d032a439b..75e691794 100644
--- a/lib/libvmod_blob/vmod_blob.c
+++ b/lib/libvmod_blob/vmod_blob.c
@@ -527,7 +527,7 @@ vmod_sub(VRT_CTX, VCL_BLOB b, VCL_BYTES n, VCL_BYTES off)
 
 	if (off + n > b->len) {
 		VERR(ctx, "size %jd from offset %jd requires more bytes than "
-		     "blob length %zd in blob.sub()",
+		     "blob length %ld in blob.sub()",
 		     (intmax_t)n, (intmax_t)off, b->len);
 		return NULL;
 	}


More information about the varnish-commit mailing list