Skip to content

Commit

Permalink
Build: Fix warning about discarded const qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
zeldin committed Feb 20, 2023
1 parent 07dab48 commit bb1fb42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynamic_load.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ static void *dlopen(const char *foo, int UNUSED(how))
return NULL;
}

res = find_semidynamic_module(name, end - name);
res = (void *)find_semidynamic_module(name, end - name);
free_string(s);
return res;
}
Expand Down

0 comments on commit bb1fb42

Please sign in to comment.