Remove warning from spawn tests.

This commit is contained in:
Ali Mashtizadeh 2023-11-21 21:45:06 -05:00
parent d4fb02e2b4
commit 3e24705537
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@
int int
main(int argc, const char *argv[]) main(int argc, const char *argv[])
{ {
char *program; const char *program;
int pid[10]; int pid[10];
int status; int status;

View File

@ -11,7 +11,7 @@ int
main(int argc, const char *argv[]) main(int argc, const char *argv[])
{ {
int origpid[10], pid[10]; int origpid[10], pid[10];
char *program; const char *program;
int status; int status;
printf("Spawn parallel test wait any: "); printf("Spawn parallel test wait any: ");

View File

@ -11,7 +11,7 @@ int
main(int argc, const char *argv[]) main(int argc, const char *argv[])
{ {
int origpid, pid; int origpid, pid;
char *program; const char *program;
int status; int status;
printf("Spawn parallel test wait any: "); printf("Spawn parallel test wait any: ");