commit c902bee40c1535f690fbdf17b3cc5256adb57200
parent 040101687bc1b67448429cca891706f7bbbdc892
Author: Antoine Amarilli <a3nm@a3nm.net>
Date: Wed, 11 Jul 2012 22:42:17 +0200
comment out old debug
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/irctk.c b/irctk.c
@@ -620,12 +620,12 @@ int push_chan(fifo_set *s, const char *chan) {
int scan_collection(fifo_set *s, const char **collection, const char *chan) {
int i;
- debug("asking for ioc for <%s>", chan);
+ // debug("asking for ioc for <%s>", chan);
for (i=0; i<s->n; i++) {
- debug("compare to %d of %d value %s surface %s", i, s->n,
- s->chans[i], s->surface_name[i]);
+ // debug("compare to %d of %d value %s surface %s", i, s->n,
+ // s->chans[i], s->surface_name[i]);
if (!strcmp(collection[i], chan)) {
- debug("found ioc %d", i);
+ // debug("found ioc %d", i);
return i;
}
}