ossp-pkg/pth/pth_fork.c 1.13 -> 1.14
--- pth_fork.c 2002/01/27 11:03:40 1.13
+++ pth_fork.c 2002/10/24 15:21:13 1.14
@@ -43,7 +43,7 @@
void (*child)(void *), void *arg)
{
if (pth_atfork_idx > PTH_ATFORK_MAX-1)
- return_errno(FALSE, ENOMEM);
+ return pth_error(FALSE, ENOMEM);
pth_atfork_list[pth_atfork_idx].prepare = prepare;
pth_atfork_list[pth_atfork_idx].parent = parent;
pth_atfork_list[pth_atfork_idx].child = child;
|
|