Skip to content

Commit 041d3ba

Browse files
committed
ease debugging by declaring a type
1 parent dda0609 commit 041d3ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

msgpack_unpack.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
# define zval_try_get_string zval_get_string
1414
#endif
1515

16-
typedef struct {
16+
typedef struct var_entries {
1717
zend_long used_slots;
18-
void *next;
18+
struct var_entries *next;
1919
zval data[VAR_ENTRIES_MAX];
2020
} var_entries;
2121

0 commit comments

Comments
 (0)