diff options
author | 2017-02-16 20:59:20 +0000 | |
---|---|---|
committer | 2017-02-16 20:59:20 +0000 | |
commit | 5fa190f95fbe9b50718db8462fedfb33f694d64b (patch) | |
tree | 2de00268cc8a66bc542f2fd17ca99952faa2aa83 | |
parent | On Apple hardware, claim an OSI of Darwin and no other OSes (diff) | |
download | wireguard-openbsd-5fa190f95fbe9b50718db8462fedfb33f694d64b.tar.xz wireguard-openbsd-5fa190f95fbe9b50718db8462fedfb33f694d64b.zip |
Fix type of argv. Found by clang.
ok bluhm@
-rw-r--r-- | regress/sys/kern/execve/tests/goodaout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/sys/kern/execve/tests/goodaout.c b/regress/sys/kern/execve/tests/goodaout.c index 68bb56223e2..f491db991e8 100644 --- a/regress/sys/kern/execve/tests/goodaout.c +++ b/regress/sys/kern/execve/tests/goodaout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: goodaout.c,v 1.4 2003/09/02 23:52:17 david Exp $ */ +/* $OpenBSD: goodaout.c,v 1.5 2017/02/16 20:59:20 patrick Exp $ */ /* $NetBSD: goodaout.c,v 1.3 1995/04/20 22:44:20 cgd Exp $ */ /* @@ -36,7 +36,7 @@ #include <unistd.h> int -main(int argc, char *argv) +main(int argc, char *argv[]) { printf("succeeded\n"); exit(0); |