diff options
author | Dai Sato <satodai@w3m.jp> | 2006-02-09 12:49:52 +0000 |
---|---|---|
committer | Dai Sato <satodai@w3m.jp> | 2006-02-09 12:49:52 +0000 |
commit | 9d56e4804d9690978dd866d6422b425895aa330e (patch) | |
tree | b5a987df237c77fbd4fb289833741978529531ba /file.c | |
parent | configure.ac: rename from configure.in. this is for autoconf2.50 (diff) | |
download | w3m-9d56e4804d9690978dd866d6422b425895aa330e.tar.gz w3m-9d56e4804d9690978dd866d6422b425895aa330e.zip |
file.c: replace pclose with fclose in the end of uncompress_stream() by Dai Sato
CVS ----------------------------------------------------------------------
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: file.c,v 1.237 2005/01/04 15:51:04 ukai Exp $ */ +/* $Id: file.c,v 1.238 2006/02/09 12:49:52 inu Exp $ */ #include "fm.h" #include <sys/types.h> #include "myctype.h" @@ -8027,7 +8027,7 @@ uncompress_stream(URLFile *uf, char **src) uf->scheme = SCM_LOCAL; } UFhalfclose(uf); - uf->stream = newFileStream(f1, (void (*)())pclose); + uf->stream = newFileStream(f1, (void (*)())fclose); } static FILE * |