From 2cee0fe23f84a1e6ccd7078098df2c5ffbe0378f Mon Sep 17 00:00:00 2001 From: Martin Michlmayr Date: Sun, 18 May 2014 09:51:32 -0400 Subject: Cosmetic change - format code consistently Add a space between if and the opening bracket, between a closing round bracket and the following opening curly bracket, etc. --- src/option.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/option.h') diff --git a/src/option.h b/src/option.h index 21942436..1ea9457d 100644 --- a/src/option.h +++ b/src/option.h @@ -229,7 +229,7 @@ public: inline bool is_eq(const char * p, const char * n) { // Test whether p matches n, substituting - in p for _ in n. for (; *p && *n; p++, n++) { - if (! (*p == '-' && *n == '_' ) && *p != *n) + if (! (*p == '-' && *n == '_') && *p != *n) return false; } // Ignore any trailing underscore -- cgit v1.2.3