[master] 564d60d6a Change vfp_entry->priv2 to int64_t instead of intptr_t

Poul-Henning Kamp phk at FreeBSD.org
Tue Dec 6 16:27:06 UTC 2022


commit 564d60d6ae794c605013be5cde5a85b9593493d7
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Tue Dec 6 16:25:36 2022 +0000

    Change vfp_entry->priv2 to int64_t instead of intptr_t

diff --git a/bin/varnishd/cache/cache_filter.h b/bin/varnishd/cache/cache_filter.h
index 13fa35bcd..eb9a8f325 100644
--- a/bin/varnishd/cache/cache_filter.h
+++ b/bin/varnishd/cache/cache_filter.h
@@ -63,7 +63,7 @@ struct vfp_entry {
 	enum vfp_status		closed;
 	const struct vfp	*vfp;
 	void			*priv1;
-	intptr_t		priv2;
+	int64_t			priv2;
 	VTAILQ_ENTRY(vfp_entry)	list;
 	uint64_t		calls;
 	uint64_t		bytes_out;


More information about the varnish-commit mailing list