From 51291ade70d7fc972cb8229fc788456a8c2d8a6b Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 5 Sep 2022 00:16:47 +0900 Subject: [PATCH] Remove extra semicolons at the top level [ci skip] --- file.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/file.c b/file.c index 5265d3a3a5..ced2c1e4a2 100644 --- a/file.c +++ b/file.c @@ -2839,14 +2839,14 @@ utime_failed(struct apply_arg *aa) # if defined(__has_attribute) && __has_attribute(availability) typedef int utimensat_func(int, const char *, const struct timespec [2], int); -RBIMPL_WARNING_PUSH(); -RBIMPL_WARNING_IGNORED(-Wunguarded-availability-new); +RBIMPL_WARNING_PUSH() +RBIMPL_WARNING_IGNORED(-Wunguarded-availability-new) static inline utimensat_func * rb_utimensat(void) { return &utimensat; } -RBIMPL_WARNING_POP(); +RBIMPL_WARNING_POP() # define utimensat rb_utimensat() # else /* __API_AVAILABLE macro does nothing on gcc */