diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-08-09 13:12:42 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-08-09 13:12:42 +0000 |
commit | ffaa9c2685ac672408db3c10de57253e291f2fec (patch) | |
tree | 5ea0445c7a3913e667c4e88efee6074c06a791ca /transact.c | |
parent | 222712b65f01604d6a79fc5096b30ee960f3986a (diff) | |
download | fetchmail-ffaa9c2685ac672408db3c10de57253e291f2fec.tar.gz fetchmail-ffaa9c2685ac672408db3c10de57253e291f2fec.tar.bz2 fetchmail-ffaa9c2685ac672408db3c10de57253e291f2fec.zip |
Safe fixes for compiler warnings.
svn path=/trunk/; revision=3929
Diffstat (limited to 'transact.c')
-rw-r--r-- | transact.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -379,7 +379,8 @@ int readheaders(int sock, int env_offs; char *received_for, *rcv, *cp; static char *delivered_to = NULL; - int n, linelen, oldlen, ch, remaining, skipcount; + int n, oldlen, ch, remaining, skipcount; + size_t linelen; struct idlist *idp; flag no_local_matches = FALSE; flag has_nuls; |