From 5af748e6ab1dde5eb48c5316ca572be774fc5b77 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Sun, 4 Nov 2012 09:32:23 -0800 Subject: Adjust test suite to remove unused variables --- tests/util/xmalloc.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/util/xmalloc.c') diff --git a/tests/util/xmalloc.c b/tests/util/xmalloc.c index b6f4564..c37396e 100644 --- a/tests/util/xmalloc.c +++ b/tests/util/xmalloc.c @@ -177,13 +177,12 @@ static int test_asprintf(size_t size) { char *copy, *string; - int status; size_t i; string = xmalloc(size); memset(string, 42, size - 1); string[size - 1] = '\0'; - status = xasprintf(©, "%s", string); + xasprintf(©, "%s", string); free(string); for (i = 0; i < size - 1; i++) if (copy[i] != 42) @@ -217,13 +216,12 @@ static int test_vasprintf(size_t size) { char *copy, *string; - int status; size_t i; string = xmalloc(size); memset(string, 42, size - 1); string[size - 1] = '\0'; - status = xvasprintf_wrapper(©, "%s", string); + xvasprintf_wrapper(©, "%s", string); free(string); for (i = 0; i < size - 1; i++) if (copy[i] != 42) -- cgit v1.2.3