Module Name:    src
Committed By:   pooka
Date:           Sat Jun 12 22:59:59 UTC 2010

Modified Files:
        src/tests/lib/semaphore: sem.c

Log Message:
Function which does not return needs to return a value.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/semaphore/sem.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/semaphore/sem.c
diff -u src/tests/lib/semaphore/sem.c:1.2 src/tests/lib/semaphore/sem.c:1.3
--- src/tests/lib/semaphore/sem.c:1.2	Thu Jun 10 22:20:38 2010
+++ src/tests/lib/semaphore/sem.c	Sat Jun 12 22:59:59 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: sem.c,v 1.2 2010/06/10 22:20:38 pooka Exp $	*/
+/*	$NetBSD: sem.c,v 1.3 2010/06/12 22:59:59 pooka Exp $	*/
 
 /*
  * Common code for semaphore tests.  This can be included both into
@@ -115,6 +115,8 @@
 		sem_wait(&semmarit[1]);
 		sem_wait(&semmarit[0]);
 	}
+
+	return NULL;
 }
 
 ATF_TC_BODY(busydestroy, tc)

Reply via email to