Module Name:    src
Committed By:   jruoho
Date:           Sun Apr 10 10:59:13 UTC 2011

Modified Files:
        src/tests/lib/libc/gen: t_nice.c

Log Message:
"wrong return value" -> "wrong errno".


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libc/gen/t_nice.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/lib/libc/gen/t_nice.c
diff -u src/tests/lib/libc/gen/t_nice.c:1.3 src/tests/lib/libc/gen/t_nice.c:1.4
--- src/tests/lib/libc/gen/t_nice.c:1.3	Wed Apr  6 08:47:55 2011
+++ src/tests/lib/libc/gen/t_nice.c	Sun Apr 10 10:59:13 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_nice.c,v 1.3 2011/04/06 08:47:55 jruoho Exp $ */
+/*	$NetBSD: t_nice.c,v 1.4 2011/04/10 10:59:13 jruoho Exp $ */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_nice.c,v 1.3 2011/04/06 08:47:55 jruoho Exp $");
+__RCSID("$NetBSD: t_nice.c,v 1.4 2011/04/10 10:59:13 jruoho Exp $");
 
 #include <sys/resource.h>
 #include <sys/wait.h>
@@ -66,7 +66,7 @@
 		ATF_REQUIRE(nice(i) == -1);
 
 		if (errno != EPERM)
-			atf_tc_fail("wrong return value");
+			atf_tc_fail("wrong errno");
 	}
 }
 

Reply via email to