From fbf9c51ff31b50a380600523a9ce6327bc306f98 Mon Sep 17 00:00:00 2001 From: christos Date: Tue, 16 Jul 2019 21:13:28 +0000 Subject: [PATCH] fix misplaced paren --- tests/fs/vfs/t_io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fs/vfs/t_io.c b/tests/fs/vfs/t_io.c index 1c980e79370f..d9dd92c676b4 100644 --- a/tests/fs/vfs/t_io.c +++ b/tests/fs/vfs/t_io.c @@ -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 seekcnt) 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);