From 97fe200122c49d08e41d925109822218e86bd2ec Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Sat, 9 May 2009 23:57:58 -0400 Subject: [PATCH] test: whitespace cleanup --- include/nm-test-helpers.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/nm-test-helpers.h b/include/nm-test-helpers.h index 0dac481dc2..91286b5839 100644 --- a/include/nm-test-helpers.h +++ b/include/nm-test-helpers.h @@ -28,14 +28,14 @@ static void FAIL(const char *test_name, const char *fmt, ...) { - va_list args; - char buf[500]; + va_list args; + char buf[500]; snprintf (buf, 500, "FAIL: (%s) %s\n", test_name, fmt); - va_start (args, fmt); + va_start (args, fmt); vfprintf (stderr, buf, args); - va_end (args); + va_end (args); _exit (1); }