diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-29 17:31:22 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-29 17:31:22 +0000 |
commit | 51a4f5771e48c8a7d8dd1de5d8a00a7237507598 (patch) | |
tree | 436598d3a55b9c0566f61542d0bf4ee00436f451 | |
parent | fix indent (diff) | |
download | w3m-51a4f5771e48c8a7d8dd1de5d8a00a7237507598.tar.gz w3m-51a4f5771e48c8a7d8dd1de5d8a00a7237507598.zip |
wait_st is not used
-rw-r--r-- | image.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: image.c,v 1.31 2003/01/29 17:26:52 ukai Exp $ */ +/* $Id: image.c,v 1.32 2003/01/29 17:31:22 ukai Exp $ */ #include "fm.h" #include <sys/types.h> @@ -324,7 +324,8 @@ loadImage(Buffer *buf, int flag) { ImageCache *cache; struct stat st; - int wait_st, i, draw = FALSE; + int i, draw = FALSE; + /* int wait_st; */ if (maxLoadImage > MAX_LOAD_IMAGE) maxLoadImage = MAX_LOAD_IMAGE; |