diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-31 02:31:33 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-31 02:31:33 +0000 |
commit | 42a483d392e5c36182be99716618d139841903b3 (patch) | |
tree | 122cd06f1b6bf4feede3b7985ae05a6450959d63 /ext | |
parent | 18caf715c94bf0d95cb0fa3425653179f74f8497 (diff) |
* ext/syck/syck.h (ASSERT): fix typo at r18176.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r-- | ext/syck/syck.h | 2 |
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 |