From: Fletcher T. Penney Date: Wed, 8 Feb 2017 04:08:09 +0000 (-0500) Subject: FIXED: Fix typo in main.c X-Git-Tag: 0.1.2a^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c3180e8de50af93196652415ec03c46b92592f46;p=multimarkdown FIXED: Fix typo in main.c --- diff --git a/src/main.c b/src/main.c index 76b71d4..b5cd556 100644 --- a/src/main.c +++ b/src/main.c @@ -249,7 +249,7 @@ int main(int argc, char** argv) { // Parse options unsigned long extensions = EXT_SMART | EXT_NOTES | EXT_CRITIC; - if (a_compatibility->count >= 0) { + if (a_compatibility->count > 0) { // Compatibility mode disables certain features // Reset extensions extensions = EXT_COMPATIBILITY | EXT_NO_LABELS | EXT_OBFUSCATE;