From bfb8e8da33a609ff8883e7e5509eb014e9cb551f Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 13 Mar 2002 01:33:30 +0000 Subject: [PATCH] removed the debugging code.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2593 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/perl/perl-common.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/perl/perl-common.c b/src/perl/perl-common.c index 550425de..cb5f0987 100644 --- a/src/perl/perl-common.c +++ b/src/perl/perl-common.c @@ -99,12 +99,8 @@ SV *irssi_bless_iobject(int type, int chat_type, void *object) PERL_OBJECT_REC *rec; HV *stash, *hv; + g_return_val_if_fail((type & ~0xffff) == 0, NULL); g_return_val_if_fail((chat_type & ~0xffff) == 0, NULL); - if ((type & ~0xffff) != 0) { - g_warning("BUG - id = %d, uniq. ID counter going in %d", - type, module_get_uniq_id("bug", 0)); - return NULL; - } rec = g_hash_table_lookup(iobject_stashes, GINT_TO_POINTER(type | (chat_type << 16)));