summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2007-11-23 13:38:32 +0000
committerDmitry Stogov <dmitry@php.net>2007-11-23 13:38:32 +0000
commit4ab8d46ddd63bcd1fab43b0f243eef941404679a (patch)
tree5a1a9c72fb524f126c4efcee68747490eb9387cf /TSRM
parent0846676471fa726b8c1df8b35a220a590997e963 (diff)
downloadphp-git-4ab8d46ddd63bcd1fab43b0f243eef941404679a.tar.gz
Fixed definitions
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/tsrm_config_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/TSRM/tsrm_config_common.h b/TSRM/tsrm_config_common.h
index d2b9bfc994..83b6b9b02c 100644
--- a/TSRM/tsrm_config_common.h
+++ b/TSRM/tsrm_config_common.h
@@ -63,8 +63,8 @@ char *alloca ();
do { if (use_heap) free(p); } while (0)
#else
# define TSRM_ALLOCA_FLAG(name)
-# define tsrm_do_alloca(p) malloc(p)
-# define tsrm_free_alloca(p) free(p)
+# define tsrm_do_alloca(p, use_heap) malloc(p)
+# define tsrm_free_alloca(p, use_heap) free(p)
#endif
#endif /* TSRM_CONFIG_COMMON_H */