We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0854de5 + a198e88 commit 9b3bfedCopy full SHA for 9b3bfed
phongo_compat.h
@@ -150,13 +150,13 @@
150
if (value > INT32_MAX || value < INT32_MIN) { \
151
phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT TSRMLS_CC, "Integer overflow detected on your platform: %lld", value); \
152
} else { \
153
- add_index_long(zval, index, val); \
+ add_index_long(zval, index, value); \
154
}
155
# define ADD_NEXT_INDEX_INT64(zval, value) \
156
157
158
159
- add_next_index_long(zval, val); \
+ add_next_index_long(zval, value); \
160
161
# define ADD_ASSOC_INT64(zval, key, value) \
162
0 commit comments