Skip to content

Commit bc17e63

Browse files
committed
Missed uint32_t changes
1 parent 94edb57 commit bc17e63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,14 +351,14 @@ ZEND_API void zend_save_error_handling(zend_error_handling *current);
351351
ZEND_API void zend_replace_error_handling(zend_error_handling_t error_handling, zend_class_entry *exception_class, zend_error_handling *current);
352352
ZEND_API void zend_restore_error_handling(zend_error_handling *saved);
353353

354-
typedef void (*zend_error_notify_cb)(int type, const char *error_filename, const uint32_t error_lineno, zend_string *message);
354+
typedef void (*zend_error_notify_cb)(int type, const char *error_filename, uint32_t error_lineno, zend_string *message);
355355

356356
BEGIN_EXTERN_C()
357357

358358
void zend_register_error_notify_callback(zend_error_notify_cb callback);
359359
int zend_startup_error_notify_callbacks();
360360
void zend_shutdown_error_notify_callbacks();
361-
void zend_error_notify_all_callbacks(int type, const char *error_filename, const uint32_t error_lineno, zend_string *message);
361+
void zend_error_notify_all_callbacks(int type, const char *error_filename, uint32_t error_lineno, zend_string *message);
362362
END_EXTERN_C()
363363

364364
#define DEBUG_BACKTRACE_PROVIDE_OBJECT (1<<0)

0 commit comments

Comments
 (0)