diff options
Diffstat (limited to 'auto/types/uintptr_t')
| -rw-r--r-- | auto/types/uintptr_t | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/auto/types/uintptr_t b/auto/types/uintptr_t index 2a00b493c..2f1908035 100644 --- a/auto/types/uintptr_t +++ b/auto/types/uintptr_t @@ -15,9 +15,8 @@ cat << END > $NGX_AUTOTEST.c $NGX_INTTYPES_H int main() { - uintptr_t i; - i = 0; - return 0; + uintptr_t i = 0; + return (int) i; } END |
