From 50b7afb2c2c0993b0894d4e34bf857cb13ed9c80 Mon Sep 17 00:00:00 2001 From: guenther Date: Sun, 20 Jul 2014 01:29:03 +0000 Subject: [PATCH] Delete unused variables found by -Wall --- regress/lib/libc/stdio_threading/fgetln/fgetln_test.c | 1 - regress/lib/libc/stdio_threading/fgets/fgets_test.c | 1 - regress/lib/libc/stdio_threading/fputs/fputs_test.c | 2 +- regress/lib/libc/stdio_threading/fread/fread_test.c | 1 - regress/lib/libc/stdio_threading/fwrite/fwrite_test.c | 2 +- 5 files changed, 2 insertions(+), 5 deletions(-) diff --git a/regress/lib/libc/stdio_threading/fgetln/fgetln_test.c b/regress/lib/libc/stdio_threading/fgetln/fgetln_test.c index d5c4db2edf5..0c815838d0b 100755 --- a/regress/lib/libc/stdio_threading/fgetln/fgetln_test.c +++ b/regress/lib/libc/stdio_threading/fgetln/fgetln_test.c @@ -43,7 +43,6 @@ int main(void) { char sfn[24]; - char buf[sizeof(TEXT_N)]; FILE *sfp; int fd, i; diff --git a/regress/lib/libc/stdio_threading/fgets/fgets_test.c b/regress/lib/libc/stdio_threading/fgets/fgets_test.c index 685d4c8257d..c53abbc06bc 100755 --- a/regress/lib/libc/stdio_threading/fgets/fgets_test.c +++ b/regress/lib/libc/stdio_threading/fgets/fgets_test.c @@ -42,7 +42,6 @@ int main(void) { char sfn[24]; - char buf[sizeof(TEXT)]; FILE *sfp; int fd, i; diff --git a/regress/lib/libc/stdio_threading/fputs/fputs_test.c b/regress/lib/libc/stdio_threading/fputs/fputs_test.c index c0a617510e9..90b6179fd5e 100755 --- a/regress/lib/libc/stdio_threading/fputs/fputs_test.c +++ b/regress/lib/libc/stdio_threading/fputs/fputs_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 || diff --git a/regress/lib/libc/stdio_threading/fread/fread_test.c b/regress/lib/libc/stdio_threading/fread/fread_test.c index b2372f5ab60..c45a64d14e4 100755 --- a/regress/lib/libc/stdio_threading/fread/fread_test.c +++ b/regress/lib/libc/stdio_threading/fread/fread_test.c @@ -44,7 +44,6 @@ int main(void) { char sfn[24]; - char buf[sizeof(TEXT)]; FILE *sfp; int fd, i; 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 || -- 2.20.1