changeset 2965:04989c63dc28

6481326 lx zone install sometimes hangs (fix lint)
author nn35248
date Sun, 22 Oct 2006 20:25:50 -0700
parents eb4788437d67
children b5ead0c5a8bf
files usr/src/lib/brand/lx/lx_brand/common/fork.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/usr/src/lib/brand/lx/lx_brand/common/fork.c	Sat Oct 21 23:16:22 2006 -0700
+++ b/usr/src/lib/brand/lx/lx_brand/common/fork.c	Sun Oct 22 20:25:50 2006 -0700
@@ -44,7 +44,7 @@
 	int ret = fork1();
 
 	if (ret == 0 && lx_is_rpm)
-		sleep(lx_rpm_delay);
+		(void) sleep(lx_rpm_delay);
 
 	return (ret == -1 ? -errno : ret);
 }