You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zend_ffi_parser_error("wrong type of bit field '%.*s' at line %d", name ? name_len : sizeof("<anonymous>")-1, name ? name : "<anonymous>", FFI_G(line));
5297
5303
}
5298
5304
5299
-
if (bits->kind==ZEND_FFI_VAL_INT32||ZEND_FFI_VAL_INT64) {
5305
+
if (bits->kind==ZEND_FFI_VAL_INT32||bits->kind==ZEND_FFI_VAL_INT64) {
5300
5306
if (bits->i64<0) {
5301
5307
zend_ffi_cleanup_dcl(field_dcl);
5302
5308
zend_ffi_parser_error("negative width in bit-field '%.*s' at line %d", name ? name_len : sizeof("<anonymous>")-1, name ? name : "<anonymous>", FFI_G(line));
zend_ffi_parser_error("width of '%.*s' exceeds its type at line %d", name ? name_len : sizeof("<anonymous>")-1, name ? name : "<anonymous>", FFI_G(line));
0 commit comments