diff options
author | TingPing <tingping@tingping.se> | 2013-10-22 14:53:33 -0400 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2013-10-22 14:53:33 -0400 |
commit | 36e41a64762a0b8a047ff51206d35466db34466e (patch) | |
tree | dcabbbb512db49091f4d5f476627485cddada8e8 /src | |
parent | 0ff2ade0783481d80d9ce7b66d02f9a15d3bff04 (diff) |
fix another warning
Diffstat (limited to 'src')
-rw-r--r-- | src/common/inbound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/inbound.c b/src/common/inbound.c index 4e93b3cd..b9503ddb 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -706,7 +706,7 @@ inbound_nameslist (server *serv, char *chan, char *names, /* Ignore prefixes so '!' won't cause issues */ while (strchr (serv->nick_prefixes, *nopre_name) != NULL) { - *nopre_name++; + nopre_name++; offset++; } |