Skip to content

Commit 26569eb

Browse files
committed
Avoid function definition with an ellipsis
Old-style declarations of parameter-less functions (leaving the parameter list empty instead of writing out "void") is discouraged by the upstream Git project.
1 parent b87f51f commit 26569eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gvfs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ static inline int gvfs_config_is_set(int mask) {
2727
return (core_gvfs & mask) == mask;
2828
}
2929

30-
static inline int gvfs_config_is_set_any() {
30+
static inline int gvfs_config_is_set_any(void) {
3131
return core_gvfs > 0;
3232
}
3333

0 commit comments

Comments
 (0)