Skip to content

Commit

Permalink
fix -Wstrict-prototypes on macos-13
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Sep 9, 2023
1 parent 1648303 commit 3772984
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sb_options.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ char *sb_print_value_size(char *buf, unsigned int buflen, double value)
}


value_t *new_value()
value_t *new_value(void)
{
value_t *newval;

Expand All @@ -453,7 +453,7 @@ value_t *new_value()
}


option_t *new_option()
option_t *new_option(void)
{
option_t *newopt;

Expand Down

0 comments on commit 3772984

Please sign in to comment.