summaryrefslogtreecommitdiffstats
path: root/regress/lib/libc/stdio_threading/fwrite/fwrite_test.c
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2014-07-20 01:29:03 +0000
committerguenther <guenther@openbsd.org>2014-07-20 01:29:03 +0000
commit50b7afb2c2c0993b0894d4e34bf857cb13ed9c80 (patch)
treea1122224f036214c307006dc274db8cbf613e072 /regress/lib/libc/stdio_threading/fwrite/fwrite_test.c
parentAdd missing include. Tickled by Doug Hogan (doug (at) acyclic.org) (diff)
downloadwireguard-openbsd-50b7afb2c2c0993b0894d4e34bf857cb13ed9c80.tar.xz
wireguard-openbsd-50b7afb2c2c0993b0894d4e34bf857cb13ed9c80.zip
Delete unused variables found by -Wall
Diffstat (limited to 'regress/lib/libc/stdio_threading/fwrite/fwrite_test.c')
-rwxr-xr-xregress/lib/libc/stdio_threading/fwrite/fwrite_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/lib/libc/stdio_threading/fwrite/fwrite_test.c b/regress/lib/libc/stdio_threading/fwrite/fwrite_test.c
index 39bfb51ef0b..621c5cb6e8e 100755
--- a/regress/lib/libc/stdio_threading/fwrite/fwrite_test.c
+++ b/regress/lib/libc/stdio_threading/fwrite/fwrite_test.c
@@ -41,7 +41,7 @@ main(void)
char sfn[24];
char buf[sizeof(TEXT)];
FILE *sfp;
- int fd, i;
+ int fd;
strlcpy(sfn, "/tmp/barnacles.XXXXXXXX", sizeof(sfn));
if ((fd = mkstemp(sfn)) == -1 ||