remove gcc warnings

This commit is contained in:
Fumitoshi UKAI
2001-11-20 08:15:22 +00:00
parent a21e8a8df0
commit b30a4fc9ee
3 changed files with 8 additions and 4 deletions

View File

@@ -1,5 +1,9 @@
2001-11-20 Fumitoshi UKAI <ukai@debian.or.jp>
* w3mhelperpanel.c (extractMailcapEntry): remove unused variables
* istream.c (StrISgets): add parentheses around assignment used
as truth value
* XMakefile (clean): remove funcname.c funcname1.h funcname2.h
these are autogenerated files.
* funcname.c funcname1.h funcname2.h: removed from CVS
@@ -15,7 +19,7 @@
* ftp.c (ftp_escape_str ftp_restore_str): remove not used functions
* indep.c (getescapechar): remove unused variable
* proto.h: add missin prototypes
* proto.h: add missing prototypes
2001-11-20 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>

View File

@@ -1,4 +1,4 @@
/* $Id: istream.c,v 1.4 2001/11/16 22:02:00 ukai Exp $ */
/* $Id: istream.c,v 1.5 2001/11/20 08:15:22 ukai Exp $ */
#include "fm.h"
#include "istream.h"
#include <signal.h>
@@ -229,7 +229,7 @@ StrISgets(InputStream stream)
do_update(base);
}
else {
if (p = memchr(&sb->buf[sb->cur], '\n', sb->next - sb->cur)) {
if ((p = memchr(&sb->buf[sb->cur], '\n', sb->next - sb->cur))) {
len = p - &sb->buf[sb->cur] + 1;
if (s == NULL)
s = Strnew_size(len);

View File

@@ -33,7 +33,7 @@ char *local_cookie;
void
extractMailcapEntry(char *mcap_entry, char **type, char **cmd)
{
int j, k;
int j;
while (*mcap_entry && IS_SPACE(*mcap_entry))
mcap_entry++;