]> git.rm.cloudns.org Git - xonotic/darkplaces.git/commitdiff
IRC: remove a cast
authorJānis Rūcis <parasti@gmail.com>
Tue, 30 Mar 2010 17:10:42 +0000 (20:10 +0300)
committerJānis Rūcis <parasti@gmail.com>
Sun, 27 Jun 2010 12:23:20 +0000 (15:23 +0300)
irc.c

diff --git a/irc.c b/irc.c
index 4024e51d6629883870257c3192d09fcf9b0f5a34..560b2cf635acd7e31e690cebe51e6ff0ace2c0e0 100644 (file)
--- a/irc.c
+++ b/irc.c
@@ -231,7 +231,7 @@ static void IRC_ProcessAllMessages(void)
                char *nl;
                int len;
 
-               nl = memchr((void *) remaining, '\n', remaining_len);
+               nl = memchr(remaining, '\n', remaining_len);
 
                if (!nl)
                {