From 8bcd28739809b709ea4946ca18f7d8a76f4b1570 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 30 May 2023 15:12:43 -0700 Subject: [PATCH] error: fix typo in previous patch * lib/error.in.h (error): Fix __VA_ARGS__ typo noted by Bruno Haible. --- lib/error.in.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/error.in.h b/lib/error.in.h index ecb19818c8..f1ba94577b 100644 --- a/lib/error.in.h +++ b/lib/error.in.h @@ -81,7 +81,7 @@ _GL_CXXALIAS_RPL (error, void, # ifndef _GL_NO_INLINE_ERROR # undef error # define error(status, ...) \ - __gl_error_call (rpl_error, status, __VA_ARGS) + __gl_error_call (rpl_error, status, __VA_ARGS__) # endif #else # if ! @HAVE_ERROR@ -- 2.39.5