From 7e8054b882133536c18faefb15cf56af2175c07c Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Thu, 31 May 2007 21:58:26 +0000 Subject: APR_VOID_P_IS_QUAD is not defined anywhere and the usual way is using APR_SIZEOF_VOIDP. PR: 40758 Submitted by: Davi Arnaut git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@543274 13f79535-47bb-0310-9956-ffa450edef68 --- strings/apr_snprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'strings') diff --git a/strings/apr_snprintf.c b/strings/apr_snprintf.c index a8b5db593..bd39663ba 100644 --- a/strings/apr_snprintf.c +++ b/strings/apr_snprintf.c @@ -1120,7 +1120,7 @@ APR_DECLARE(int) apr_vformatter(int (*flush_func)(apr_vformatter_buff_t *), * don't handle "%p". */ case 'p': -#ifdef APR_VOID_P_IS_QUAD +#if APR_SIZEOF_VOIDP == 8 if (sizeof(void *) <= sizeof(u_widest_int)) { ui_quad = (u_widest_int) va_arg(ap, void *); s = conv_p2_quad(ui_quad, 4, 'x', -- cgit v1.2.1