diff options
Diffstat (limited to '')
-rw-r--r-- | g10/exec.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/g10/exec.c b/g10/exec.c index fd592e853..0278438f6 100644 --- a/g10/exec.c +++ b/g10/exec.c @@ -417,14 +417,14 @@ int exec_write(struct exec_info **info,const char *program, if(DBG_EXTPROG) log_debug("execlp: %s\n",program); - execlp(program,program,NULL); + execlp(program,program,(void *)NULL); } else { if(DBG_EXTPROG) log_debug("execlp: %s -c %s\n",shell,(*info)->command); - execlp(shell,shell,"-c",(*info)->command,NULL); + execlp(shell,shell,"-c",(*info)->command,(void *)NULL); } /* If we get this far the exec failed. Clean up and return. */ @@ -617,4 +617,3 @@ int exec_finish(struct exec_info *info) return ret; } #endif /* ! NO_EXEC */ - |