threads.d: fixed typos in the definition of mp_restore_signals.

This commit is contained in:
Juan Jose Garcia Ripoll 2009-08-30 01:21:44 +02:00
parent 2b9b19b669
commit 31a2348110

View file

@ -466,12 +466,12 @@ mp_get_sigmask(void)
}
static cl_object
mp_set_sigmask(cl_object vector)
mp_set_sigmask(cl_object data)
{
sigset_t *mask_ptr = (sigset_t*)data->vector.self.b8;
if (pthread_sigmask(SIG_SETMASK, &mask_ptr, NULL))
if (pthread_sigmask(SIG_SETMASK, mask_ptr, NULL))
FElibc_error("MP:SET-SIGMASK failed in a call to pthread_sigmask", 0);
@(return vector)
@(return data)
}
#endif