X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=src%2Fcoloredstderr.c;h=e3cc1d6337bd8839b68df218494ee6de1862acbb;hb=55e8d0d38a256496f9eca9d7f293e1d2e8692a2c;hp=eae164dd93d168856440fbfbf09209cdd94eb60b;hpb=7c2d726cd4c2716e9c211b5a5ab5d7713e1dfc5e;p=coloredstderr%2Fcoloredstderr.git diff --git a/src/coloredstderr.c b/src/coloredstderr.c index eae164d..e3cc1d6 100644 --- a/src/coloredstderr.c +++ b/src/coloredstderr.c @@ -530,9 +530,9 @@ int execv(char const *path, char * const argv[]) { } static int (*real_execvp)(char const *path, char * const argv[]); -int execvp(char const *path, char * const argv[]) { +int execvp(char const *file, char * const argv[]) { DLSYM_FUNCTION(real_execvp, "execvp"); update_environment(); - return real_execvp(path, argv); + return real_execvp(file, argv); }