Module Name:    src
Committed By:   christos
Date:           Tue Jul 16 21:13:28 UTC 2019

Modified Files:
        src/tests/fs/vfs: t_io.c

Log Message:
fix misplaced paren


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/tests/fs/vfs/t_io.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/fs/vfs/t_io.c
diff -u src/tests/fs/vfs/t_io.c:1.18 src/tests/fs/vfs/t_io.c:1.19
--- src/tests/fs/vfs/t_io.c:1.18	Tue Jul 16 13:29:17 2019
+++ src/tests/fs/vfs/t_io.c	Tue Jul 16 17:13:28 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_io.c,v 1.18 2019/07/16 17:29:17 martin Exp $	*/
+/*	$NetBSD: t_io.c,v 1.19 2019/07/16 21:13:28 christos Exp $	*/
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -85,7 +85,7 @@ extendbody(const atf_tc_t *tc, off_t see
 
 	FSTEST_ENTER();
 	RL(fd = rump_sys_open("testfile",
-	    O_CREAT | O_RDWR | (seekcnt ? O_APPEND : 0)), 0600);
+	    O_CREAT | O_RDWR | (seekcnt ? O_APPEND : 0), 0600));
 	RL(rump_sys_ftruncate(fd, seekcnt));
 	RL(rump_sys_fstat(fd, &sb));
 	ATF_REQUIRE_EQ(sb.st_size, seekcnt);

Reply via email to