From d26746b23a0ea41476dcd8d33a6f14a415180cdc Mon Sep 17 00:00:00 2001 From: michael Date: Mon, 24 Feb 2014 22:32:07 +0000 Subject: - client.c:find_person(): fixed mismatching prototype as pointed out by Adam git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3025 82007160-df01-0410-b94d-b575c5fd34c7 --- src/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.c b/src/client.c index f8c5693..253bbf4 100644 --- a/src/client.c +++ b/src/client.c @@ -508,7 +508,7 @@ update_client_exit_stats(struct Client *client_p) * side effects - find person by (nick)name */ struct Client * -find_person(const struct Client *client_p, const char *name) +find_person(const struct Client *const client_p, const char *name) { struct Client *target_p = NULL; -- cgit