summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-09-05 00:16:47 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-09-05 00:16:47 +0900
commit51291ade70d7fc972cb8229fc788456a8c2d8a6b (patch)
tree27edd440e3641a62fff05c62cdd89d9818be8080 /file.c
parente83183b498bf946392aa3dfd6cb71a638b943d77 (diff)
downloadruby-51291ade70d7fc972cb8229fc788456a8c2d8a6b.tar.gz
Remove extra semicolons at the top level [ci skip]
Diffstat (limited to 'file.c')
-rw-r--r--file.c6
1 files 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 */