summaryrefslogtreecommitdiff
path: root/include/alloca.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/alloca.h')
-rw-r--r--include/alloca.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/alloca.h b/include/alloca.h
index 7d243fd4ac..9a4b5c7da0 100644
--- a/include/alloca.h
+++ b/include/alloca.h
@@ -55,8 +55,8 @@ extern int __libc_alloca_cutoff (size_t size) __attribute__ ((const));
#else
# define alloca_account(size, avar) \
({ size_t s__ = (size); \
- avar += size__; \
- __alloca (size__); })
+ avar += s__; \
+ __alloca (s__); })
#endif
#endif