File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 150
150
if (value > INT32_MAX || value < INT32_MIN) { \
151
151
phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT TSRMLS_CC, "Integer overflow detected on your platform: %lld", value); \
152
152
} else { \
153
- add_index_long(zval, index, val ); \
153
+ add_index_long(zval, index, value ); \
154
154
}
155
155
# define ADD_NEXT_INDEX_INT64 (zval , value ) \
156
156
if (value > INT32_MAX || value < INT32_MIN) { \
157
157
phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT TSRMLS_CC, "Integer overflow detected on your platform: %lld", value); \
158
158
} else { \
159
- add_next_index_long(zval, val ); \
159
+ add_next_index_long(zval, value ); \
160
160
}
161
161
# define ADD_ASSOC_INT64 (zval , key , value ) \
162
162
if (value > INT32_MAX || value < INT32_MIN) { \
You can’t perform that action at this time.
0 commit comments