diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-22 21:25:49 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-22 21:25:49 +0000 |
commit | d5d402ebf5dab881d4c79deea1862f6990a37f83 (patch) | |
tree | 6330285aead3a28220369ebe696d9a1ffe784b82 /ext | |
parent | 9049de7875eedcba33fa909fbf6f6de08129039d (diff) |
* ext/syck: suppress warnings more.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r-- | ext/syck/implicit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/syck/implicit.c b/ext/syck/implicit.c index 878165b715..126b896f18 100644 --- a/ext/syck/implicit.c +++ b/ext/syck/implicit.c @@ -1611,7 +1611,7 @@ syck_tagcmp( const char *tag1, const char *tag2 ) char * syck_type_id_to_uri( const char *type_id ) { - const char *cursor, *limit, *marker; + const char *cursor, *limit, *marker = 0; cursor = type_id; limit = type_id + strlen( type_id ); |