remove gcc warnings
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
2001-11-20 Fumitoshi UKAI <ukai@debian.or.jp>
|
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
|
* XMakefile (clean): remove funcname.c funcname1.h funcname2.h
|
||||||
these are autogenerated files.
|
these are autogenerated files.
|
||||||
* funcname.c funcname1.h funcname2.h: removed from CVS
|
* 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
|
* ftp.c (ftp_escape_str ftp_restore_str): remove not used functions
|
||||||
* indep.c (getescapechar): remove unused variable
|
* 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>
|
2001-11-20 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
|
||||||
|
|
||||||
|
|||||||
@@ -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 "fm.h"
|
||||||
#include "istream.h"
|
#include "istream.h"
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
@@ -229,7 +229,7 @@ StrISgets(InputStream stream)
|
|||||||
do_update(base);
|
do_update(base);
|
||||||
}
|
}
|
||||||
else {
|
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;
|
len = p - &sb->buf[sb->cur] + 1;
|
||||||
if (s == NULL)
|
if (s == NULL)
|
||||||
s = Strnew_size(len);
|
s = Strnew_size(len);
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ char *local_cookie;
|
|||||||
void
|
void
|
||||||
extractMailcapEntry(char *mcap_entry, char **type, char **cmd)
|
extractMailcapEntry(char *mcap_entry, char **type, char **cmd)
|
||||||
{
|
{
|
||||||
int j, k;
|
int j;
|
||||||
|
|
||||||
while (*mcap_entry && IS_SPACE(*mcap_entry))
|
while (*mcap_entry && IS_SPACE(*mcap_entry))
|
||||||
mcap_entry++;
|
mcap_entry++;
|
||||||
|
|||||||
Reference in New Issue
Block a user