From ac3837b620c50fe678bd625f6fc92fbadf1263f3 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 23 Dec 2014 21:14:37 +0000 Subject: [PATCH] - Replaced several short ints with just ints git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/trunk@5099 82007160-df01-0410-b94d-b575c5fd34c7 --- src/scan.c | 6 +++--- src/scan.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/scan.c b/src/scan.c index 81342c1..2f20f3c 100644 --- a/src/scan.c +++ b/src/scan.c @@ -890,9 +890,9 @@ static void scan_irckline(struct scan_struct *ss, const char *format, const char char message[MSGLENMAX]; /* OUTPUT */ - unsigned short pos = 0; /* position in format */ - unsigned short len = 0; /* position in message */ - unsigned short size = 0; /* temporary size buffer */ + unsigned int pos = 0; /* position in format */ + unsigned int len = 0; /* position in message */ + unsigned int size = 0; /* temporary size buffer */ unsigned int i; diff --git a/src/scan.h b/src/scan.h index 7babc3a..173d1ec 100644 --- a/src/scan.h +++ b/src/scan.h @@ -13,8 +13,8 @@ struct scan_struct char *proof; OPM_REMOTE_T *remote; - unsigned short scans; - unsigned short positive; + unsigned int scans; + unsigned int positive; struct ChannelConf *manual_target; }; -- 2.30.2