From eb08e01b673e99bdef86fa6588049f993c91ccd5 Mon Sep 17 00:00:00 2001 From: rillig Date: Wed, 23 Aug 2023 20:05:05 +0000 Subject: [PATCH] tests/compat/linux: fix typo in comment --- tests/compat/linux/h_linux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/compat/linux/h_linux.h b/tests/compat/linux/h_linux.h index 549534fe1616..1b21fa6d39fc 100644 --- a/tests/compat/linux/h_linux.h +++ b/tests/compat/linux/h_linux.h @@ -1,4 +1,4 @@ -/* $NetBSD: h_linux.h,v 1.1 2023/08/19 22:56:44 christos Exp $ */ +/* $NetBSD: h_linux.h,v 1.2 2023/08/23 20:05:05 rillig Exp $ */ /*- * Copyright (c) 2023 The NetBSD Foundation, Inc. @@ -41,7 +41,7 @@ #define RS(x) do { if ((x) == -1) exit(errno); } while (0) #define REQUIRE(x) do { if (!(x)) exit(FAIL); } while (0) -/* Convinience wrappers for common syscalls. */ +/* Convenience wrappers for common syscalls. */ #define close(fd) (int)syscall(LINUX_SYS_close, fd) #define exit(status) (void)syscall(LINUX_SYS_exit_group, status) #define fcntl(fd, cmd, ...) (int)syscall(LINUX_SYS_fcntl, fd, cmd, \