diff options
author | Jason Evans <jasone@canonware.com> | 2014-10-20 23:55:33 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2014-10-20 23:55:33 (GMT) |
commit | 1f725eb7b5ddafa99e0ae0858a18eb25dae18641 (patch) | |
tree | 062c2401fe3c7ac1ddeadd192e05b6eb684c70eb | |
parent | 8f47e3d82be11eb5e36cab597fa6579b8c08b3ac (diff) | |
parent | 79725aa6f6823bf0703374cb4b89b64133321138 (diff) | |
download | jemalloc-1f725eb7b5ddafa99e0ae0858a18eb25dae18641.zip jemalloc-1f725eb7b5ddafa99e0ae0858a18eb25dae18641.tar.gz jemalloc-1f725eb7b5ddafa99e0ae0858a18eb25dae18641.tar.bz2 |
Merge pull request #154 from guilherme-pg/implicit-int
Fix variable declaration with no type in the configure script.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a7bf103..5c51f27 100644 --- a/configure.ac +++ b/configure.ac @@ -1363,7 +1363,7 @@ if test "x${enable_zone_allocator}" = "x1" ; then AC_DEFUN([JE_ZONE_PROGRAM], [AC_LANG_PROGRAM( [#include <malloc/malloc.h>], - [static foo[[sizeof($1) $2 sizeof(void *) * $3 ? 1 : -1]]] + [static int foo[[sizeof($1) $2 sizeof(void *) * $3 ? 1 : -1]]] )]) AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,14)],[JEMALLOC_ZONE_VERSION=3],[ |