Fix remaining compile error.

This commit is contained in:
grehan 2006-10-18 19:56:20 +00:00
parent cbad7c02dc
commit 8258d2500c
2 changed files with 2 additions and 2 deletions

View File

@ -348,7 +348,7 @@ casuword(volatile u_long *addr, u_long old, u_long new)
}
val = *p;
(void) atomic_cmpset_32(p, old, new);
(void) atomic_cmpset_32((volatile uint32_t *)p, old, new);
td->td_pcb->pcb_onfault = NULL;

View File

@ -348,7 +348,7 @@ casuword(volatile u_long *addr, u_long old, u_long new)
}
val = *p;
(void) atomic_cmpset_32(p, old, new);
(void) atomic_cmpset_32((volatile uint32_t *)p, old, new);
td->td_pcb->pcb_onfault = NULL;