diff options
author | Arnavion <arnavion@gmail.com> | 2014-12-04 04:06:38 -0800 |
---|---|---|
committer | Arnavion <arnavion@gmail.com> | 2014-12-04 04:06:38 -0800 |
commit | 8062bce835681d8200666ad183fe8cf3f6d87468 (patch) | |
tree | e81450df3b1b71d763695c9832edb3ffca265255 /src/common/inbound.c | |
parent | 3fbe5b876e3af3fde135eb42bcd3050b41865d1a (diff) |
Fix some obvious type warnings.
Diffstat (limited to 'src/common/inbound.c')
-rw-r--r-- | src/common/inbound.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/inbound.c b/src/common/inbound.c index b80553b3..f7232ce4 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -682,7 +682,8 @@ inbound_nameslist (server *serv, char *chan, char *names, char **name_list; char *host, *nopre_name; char name[NICKLEN]; - int i, offset; + int i; + size_t offset; sess = find_channel (serv, chan); if (!sess) |