remove useless checks, size_t != ssize_t :)

This commit is contained in:
Michael Stapelberg
2011-04-28 20:24:16 +02:00
parent 528f486eee
commit 2c6508a6a3
2 changed files with 0 additions and 12 deletions

View File

@ -443,10 +443,6 @@ static int add_subscription(void *extra, const unsigned char *s,
#else
static int add_subscription(void *extra, const unsigned char *s,
size_t len) {
if (len < 0) {
DLOG("Invalid subscription with len %zd\n", len);
return 1;
}
#endif
ipc_client *client = extra;