aboutsummaryrefslogtreecommitdiffstats
path: root/html.h
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-01-10 17:15:08 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-01-10 17:15:08 +0000
commit0a6511f3dc8442ff913a072a6addb228121e8b97 (patch)
tree8528fe810bc0e9220b6500254cb0f685eb30a9bb /html.h
parent[w3m-dev 03632] cleanup (don't close connection of news server) (diff)
downloadw3m-0a6511f3dc8442ff913a072a6addb228121e8b97.tar.gz
w3m-0a6511f3dc8442ff913a072a6addb228121e8b97.zip
fix compiler warnings
* html.h (UFclose): value computed but not used From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rw-r--r--html.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.h b/html.h
index af56799..3edea1e 100644
--- a/html.h
+++ b/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;