Skip to content

Commit 18c5cd1

Browse files
committed
Zend/Optimizer: Use type uint32_t instead of int for _zend_func_info.num
1 parent 1685b9c commit 18c5cd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/Optimizer/zend_call_graph.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ struct _zend_call_info {
4444
};
4545

4646
struct _zend_func_info {
47-
int num;
47+
uint32_t num;
4848
uint32_t flags;
4949
zend_ssa ssa; /* Static Single Assignment Form */
5050
zend_call_info *caller_info; /* where this function is called from */

0 commit comments

Comments
 (0)