summaryrefslogtreecommitdiff
path: root/src/send.c
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-12-11 17:45:22 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-12-11 17:45:22 +0000
commitaee0e711271bc4ae7488a02487c8302d48014dcb (patch)
treed9b373d5e67dc2f77e304c222e75d0d21e515cdc /src/send.c
parentd489c64298db7a88644bb683aa27f2084c004cca (diff)
- send.c:send_queued_write(): removed pointless cast
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2653 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src/send.c')
-rw-r--r--src/send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/send.c b/src/send.c
index 9753b15..4d02bd9 100644
--- a/src/send.c
+++ b/src/send.c
@@ -271,7 +271,7 @@ send_queued_write(struct Client *to)
/* we have a non-fatal error, reschedule a write */
SetSendqBlocked(to);
comm_setselect(&to->localClient->fd, COMM_SELECT_WRITE,
- (PF *)sendq_unblocked, (void *)to, 0);
+ (PF *)sendq_unblocked, to, 0);
}
else if (retlen <= 0)
{