From 88525617e977b2b24315e8a7bc565c2975cdf345 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 31 Jan 2023 12:16:41 -0500 Subject: tests: Use close() wrappers --- tests/xtouch.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/xtouch.c') diff --git a/tests/xtouch.c b/tests/xtouch.c index 506c73d..7e29547 100644 --- a/tests/xtouch.c +++ b/tests/xtouch.c @@ -104,13 +104,11 @@ static int xtouch(const struct args *args, const char *path) { } if (futimens(fd, args->times) != 0) { - int error = errno; - close(fd); - errno = error; + close_quietly(fd); return -1; } - return close(fd); + return xclose(fd); } } -- cgit v1.2.3