diff options
Diffstat (limited to 'os/kernel/include/vt.h')
-rw-r--r-- | os/kernel/include/vt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/kernel/include/vt.h b/os/kernel/include/vt.h index 20a64ec95..455545cc6 100644 --- a/os/kernel/include/vt.h +++ b/os/kernel/include/vt.h @@ -88,7 +88,7 @@ extern VTList vtlist; --vtlist.vt_next->vt_time; \
while (!(vtp = vtlist.vt_next)->vt_time) { \
vtfunc_t fn = vtp->vt_func; \
- vtp->vt_func = NULL; \
+ vtp->vt_func = (vtfunc_t)NULL; \
vtp->vt_next->vt_prev = (void *)&vtlist; \
(&vtlist)->vt_next = vtp->vt_next; \
fn(vtp->vt_par); \
|