diff options
Diffstat (limited to 'src/nvim/os/dl.c')
-rw-r--r-- | src/nvim/os/dl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/dl.c b/src/nvim/os/dl.c index e7a957a3aa..b4a35e203e 100644 --- a/src/nvim/os/dl.c +++ b/src/nvim/os/dl.c @@ -13,7 +13,7 @@ /// int -> string /// string -> string /// string -> int -typedef void (*gen_fn)(); +typedef void (*gen_fn)(void); typedef const char *(*str_str_fn)(const char *str); typedef int64_t (*str_int_fn)(const char *str); typedef const char *(*int_str_fn)(int64_t i); |