Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/tests/fs/vfs fix misplaced paren
details: https://anonhg.NetBSD.org/src/rev/913e687dddc2
branches: trunk
changeset: 1000243:913e687dddc2
user: christos <christos%NetBSD.org@localhost>
date: Tue Jul 16 21:13:28 2019 +0000
description:
fix misplaced paren
diffstat:
tests/fs/vfs/t_io.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 9daf5b339d2a -r 913e687dddc2 tests/fs/vfs/t_io.c
--- a/tests/fs/vfs/t_io.c Tue Jul 16 20:29:53 2019 +0000
+++ b/tests/fs/vfs/t_io.c Tue Jul 16 21:13:28 2019 +0000
@@ -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 @@
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);
Home |
Main Index |
Thread Index |
Old Index