From acfdbc1002019398906e634efaf1054c45a14851 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Thu, 22 Oct 2009 09:24:32 +0000 Subject: [PATCH] Renamed status to _aprstatus for better escaping. --- stdlib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib.h b/stdlib.h index 71850da..1129f79 100644 --- a/stdlib.h +++ b/stdlib.h @@ -79,8 +79,8 @@ #define _aprcall(expr) \ do { \ - apr_status_t status((expr)); \ - _assert(status == APR_SUCCESS); \ + apr_status_t _aprstatus((expr)); \ + _assert(_aprstatus == APR_SUCCESS); \ } while (false) #define _forever \ -- 2.50.0