boottrace: Use NULL for SYSINIT's last arg, which is a pointer type

MFC after:	3 days
This commit is contained in:
Zhenlei Huang 2024-05-14 12:03:50 +08:00
parent 338d53965d
commit d9f1f0a901

View file

@ -613,4 +613,4 @@ boottrace_init(void)
st.table = malloc(st.size * sizeof(struct bt_event), M_BOOTTRACE,
M_WAITOK | M_ZERO);
}
SYSINIT(boottrace, SI_SUB_CPU, SI_ORDER_ANY, boottrace_init, 0);
SYSINIT(boottrace, SI_SUB_CPU, SI_ORDER_ANY, boottrace_init, NULL);