fix compiler warnings
* html.h (UFclose): value computed but not used From: Fumitoshi UKAI <ukai@debian.or.jp>
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2003-01-11 Fumitoshi UKAI <ukai@debian.or.jp>
|
||||
|
||||
* fix compiler warnings
|
||||
* html.h (UFclose): value computed but not used
|
||||
|
||||
2003-01-11 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
|
||||
|
||||
* [w3m-dev 03632] cleanup (don't close connection of news server)
|
||||
@@ -6349,4 +6354,4 @@ a * [w3m-dev 03276] compile error on EWS4800
|
||||
* release-0-2-1
|
||||
* import w3m-0.2.1
|
||||
|
||||
$Id: ChangeLog,v 1.671 2003/01/10 17:06:17 ukai Exp $
|
||||
$Id: ChangeLog,v 1.672 2003/01/10 17:15:08 ukai Exp $
|
||||
|
4
html.h
4
html.h
@@ -1,4 +1,4 @@
|
||||
/* $Id: html.h,v 1.20 2003/01/10 17:06:23 ukai Exp $ */
|
||||
/* $Id: html.h,v 1.21 2003/01/10 17:15:22 ukai Exp $ */
|
||||
#ifndef _HTML_H
|
||||
#define _HTML_H
|
||||
#ifdef USE_SSL
|
||||
@@ -14,7 +14,7 @@
|
||||
#define UFgetc(f) ISgetc((f)->stream)
|
||||
#define UFundogetc(f) ISundogetc((f)->stream)
|
||||
#define UFread(f,buf,len) ISread((f)->stream,buf,len)
|
||||
#define UFclose(f) (ISclose((f)->stream) == 0 && ((f)->stream = NULL))
|
||||
#define UFclose(f) (void)(ISclose((f)->stream) == 0 && ((f)->stream = NULL))
|
||||
|
||||
struct cmdtable {
|
||||
char *cmdname;
|
||||
|
Reference in New Issue
Block a user