aboutsummaryrefslogtreecommitdiffstats
path: root/ext/syck
diff options
context:
space:
mode:
Diffstat (limited to 'ext/syck')
-rw-r--r--ext/syck/syck.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/syck/syck.h b/ext/syck/syck.h
index 3df3fab3f0..81b3d67952 100644
--- a/ext/syck/syck.h
+++ b/ext/syck/syck.h
@@ -34,7 +34,7 @@ extern "C" {
#if DEBUG
void syck_assert( const char *, unsigned, const char * );
# define ASSERT(f) \
- (( f ) ? (void)0 syck_assert( __FILE__, __LINE__, #f )
+ (( f ) ? (void)0 : syck_assert( __FILE__, __LINE__, #f ))
#else
# define ASSERT(f) ((void)0)
#endif