From b5800afbae98afce2841af18d9dc72d1a6bc357c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 12 Dec 2016 13:49:33 +0100 Subject: [PATCH] fix build --- src/php_http_etag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/php_http_etag.c b/src/php_http_etag.c index c1e29c3..ceb82e3 100644 --- a/src/php_http_etag.c +++ b/src/php_http_etag.c @@ -60,7 +60,7 @@ char *php_http_etag_finish(php_http_etag_t *e) unsigned char buf[4]; *((uint *) e->ctx) = ~*((uint *) e->ctx); -#if WORDS_BIGENDIAN +#ifdef WORDS_BIGENDIAN etag = php_http_etag_digest((unsigned char *) e->ctx, 4); #else buf[0] = ((unsigned char *) e->ctx)[3]; -- 2.30.2