src/c/unixint.d: fixed typo that only affects the single-threaded builds.

This commit is contained in:
Juan Jose Garcia Ripoll 2009-10-08 14:15:12 +02:00
parent 4e92699b29
commit 6b20a47fe1

View file

@ -364,7 +364,7 @@ unblock_signal(int signal)
# ifdef ECL_THREADS
pthread_sigmask(SIG_SETMASK, cl_core.default_sigmask, NULL);
# else
sigprocmask(SIG_SETMASK, cl_core.default_sigmaks, NULL);
sigprocmask(SIG_SETMASK, cl_core.default_sigmask, NULL);
# endif
}
#endif