summaryrefslogtreecommitdiff
path: root/src/io.c
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2011-09-28 19:18:26 +0200
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2011-09-28 19:18:26 +0200
commite76e3245de4cddee3d7921cc67f1bfd30ce9cabd (patch)
tree86a3277df80c2adb7e403eda01be68569f527761 /src/io.c
parentc1cf0a71cfd8aa3441e57592e17de0d34823d305 (diff)
downloadcmumble-e76e3245de4cddee3d7921cc67f1bfd30ce9cabd.tar.gz
cmumble-e76e3245de4cddee3d7921cc67f1bfd30ce9cabd.tar.bz2
cmumble-e76e3245de4cddee3d7921cc67f1bfd30ce9cabd.zip
Revert "find_by_id: Fix lookup"
This reverts commit c1cf0a71cfd8aa3441e57592e17de0d34823d305.
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io.c b/src/io.c
index b3227eb..e3b9bcb 100644
--- a/src/io.c
+++ b/src/io.c
@@ -105,7 +105,7 @@ process_line(char *line)
cmd[strlen(ctx->commands[i].name)] != ' ')
continue;
- ctx->commands[i].callback(ctx, 0, NULL);
+ ctx->commands[i].callback(ctx);
break;
}
}