fix compiler warnings
* html.h (UFclose): value computed but not used From: Fumitoshi UKAI <ukai@debian.or.jp>
This commit is contained in:
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