Module Name:    src
Committed By:   reinoud
Date:           Tue Aug 16 13:15:04 UTC 2011

Modified Files:
        src/regress/sys/fs/lseek: lseek.c

Log Message:
Fix missing comma in errx() in normally not compiled code.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/regress/sys/fs/lseek/lseek.c

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

Modified files:

Index: src/regress/sys/fs/lseek/lseek.c
diff -u src/regress/sys/fs/lseek/lseek.c:1.7 src/regress/sys/fs/lseek/lseek.c:1.8
--- src/regress/sys/fs/lseek/lseek.c:1.7	Mon May 16 12:43:59 2011
+++ src/regress/sys/fs/lseek/lseek.c	Tue Aug 16 13:15:04 2011
@@ -79,7 +79,7 @@
 		"returns the current position\n");
 	cur = lseek(fd, st.st_size-50, SEEK_DATA);
 	if (cur != st.st_size - 50) {
-		errx(EXIT_FAILURE"Seek data didn't give passed seek position "
+		errx(EXIT_FAILURE, "Seek data didn't give passed seek position "
 		    "back %" PRIi64 " should be %" PRIi64, cur, st.st_size-50);
 		return EXIT_FAILURE;
 	}

Reply via email to