From 9855a34f48acf6ae3aaeba9ec37756da41507e64 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 24 Aug 2014 21:06:09 +0200 Subject: Coding style: always add a space between a pointer's type and the * --- src/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/options.c') diff --git a/src/options.c b/src/options.c index 8593da2..0af48f4 100644 --- a/src/options.c +++ b/src/options.c @@ -394,7 +394,7 @@ static bool config_match(const char *opt, ...) { va_start(ap, opt); - while((str = va_arg(ap, const char*)) != NULL) { + while((str = va_arg(ap, const char *)) != NULL) { if (strcmp(opt, str) == 0) { match = true; break; -- cgit v1.2.3