diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2014-05-18 09:51:32 -0400 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2014-05-18 09:51:32 -0400 |
commit | 2cee0fe23f84a1e6ccd7078098df2c5ffbe0378f (patch) | |
tree | 4f3c4869a427ca176abd69af801b4a04bc8b5641 /src/option.h | |
parent | 60fd2b234a4cf95223f58a87f413d37ff2ed5fc7 (diff) | |
download | fork-ledger-2cee0fe23f84a1e6ccd7078098df2c5ffbe0378f.tar.gz fork-ledger-2cee0fe23f84a1e6ccd7078098df2c5ffbe0378f.tar.bz2 fork-ledger-2cee0fe23f84a1e6ccd7078098df2c5ffbe0378f.zip |
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.
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |