diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-03-08 17:37:04 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-03-08 17:37:09 +0100 |
| commit | 010f3d9748d32fe6b0895847dc82d276bba5b672 (patch) | |
| tree | 9e509f4e99d988a80ccf88e7f3adf0baeefc4dcd /src/libtools | |
| parent | ff31d0b0233dffa7ec2e05bc1a4f849831fe63f3 (diff) | |
| download | box64-010f3d9748d32fe6b0895847dc82d276bba5b672.tar.gz box64-010f3d9748d32fe6b0895847dc82d276bba5b672.zip | |
Fixed a warning
Diffstat (limited to 'src/libtools')
| -rwxr-xr-x | src/libtools/auxval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtools/auxval.c b/src/libtools/auxval.c index e1cc87b0..789902df 100755 --- a/src/libtools/auxval.c +++ b/src/libtools/auxval.c @@ -22,7 +22,7 @@ static uintptr_t* auxval_start = NULL; -int init_auxval(int argc, const char **argv, const char **env) { +int init_auxval(int argc, const char **argv, char **env) { (void)argc; (void)argv; // auxval vector is after envs... |