Skip to content

Commit

Permalink
Change another char * to const
Browse files Browse the repository at this point in the history
  • Loading branch information
lpugin committed Jan 25, 2024
1 parent 1b3c74e commit 44c829c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/win32/win_getopt.h
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ static int
parse_long_options(char * const *nargv, const char *options,
const struct option *long_options, int *idx, int short_too)
{
char *current_argv, *has_equal;
const char *current_argv;
char *has_equal;
size_t current_argv_len;
int i, ambiguous, match;

Expand Down

0 comments on commit 44c829c

Please sign in to comment.