Skip to content

Commit 422c839

Browse files
committed
Fix [-Wempty-body] compiler warning in Phar extension
1 parent 01762e5 commit 422c839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/phar/phar_path_check.re

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ phar_path_check_result phar_path_check(char **s, size_t *len, const char **error
3535
#define YYCURSOR p
3636
#define YYLIMIT p+*len
3737
#define YYMARKER m
38-
#define YYFILL(n)
38+
#define YYFILL(n) do {} while (0)
3939

4040
loop:
4141
/*!re2c

0 commit comments

Comments
 (0)