sentinel needs a pointer, use NULL defined ((void *)0) in gcc or clang ckpass.c: In function ‘pipeout’: ckpass.c:681:17: warning: missing sentinel in function call [-Wformat=] 681 | execl(command, command, 0); | ^~~~~ --- a/ckpass.c +++ b/ckpass.c @@ -677,7 +677,7 @@ int pipeout(const char *command, const char *s) close(pipefd[1]); /* Close write end. */ dup2(pipefd[0], 0); /* Dup read end to stdin. */ - execl(command, command, 0); + execl(command, command, NULL); /* I don't really think these are...
fix compile- init_windows without a prototype / null pointer
here's a patch for sorting by title.
here a patch for sorting by title.
here a patch for sorting by title. --- ckpass-0.2.orig/ckpass.c 2013-03-16 21:17:11.000000000...