replacing func() with xfunc() where appropriate

This commit is contained in:
Denis Vlasenko
2006-09-03 12:21:59 +00:00
parent 87d80dcc3e
commit 27af5a0dd3
6 changed files with 12 additions and 21 deletions

View File

@@ -454,7 +454,7 @@ DIR *xopendir(const char *path)
/* Die with an error message if we can't daemonize. */
void xdaemon(int nochdir, int noclose)
{
if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon");
if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon");
}
#endif
#endif