Skip to content

Commit

Permalink
eliminate compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
burgerrg committed Jan 24, 2025
1 parent 0955250 commit 2a64480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c/self-exe.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static char *wide_to_utf8(const wchar_t *arg) {
return arg8;
}

static char *get_process_executable_path(const char *exec_file) {
static char *get_process_executable_path(const char */*exec_file*/) {
wchar_t *path = NULL;
DWORD n, sz;
for (n = 0, sz = 256;; sz *= 2) {
Expand Down

0 comments on commit 2a64480

Please sign in to comment.