commit fe12a19564f6d949ccf4ecd7262ca8cc630fa094
parent 9e58eba3a982851c78db08f6f909c5778f09ba3f
Author: ukai <ukai>
Date: Wed, 9 Jul 2003 15:07:10 +0000
* w3mimg/fb/fb_img.h (get_image_size): add missing prototypes
* w3mimg/fb/fb.c (fb_clear): unused variable `j'
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat:
3 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-10 Fumitoshi UKAI <ukai@ukai.org>
+
+ * w3mimg/fb/fb_img.h (get_image_size): add missing prototypes
+ * w3mimg/fb/fb.c (fb_clear): unused variable `j'
+
2003-07-09 Hiroyuki Ito <hito@crl.go.jp>
* [w3m-dev 03935] Re: clear image
diff --git a/w3mimg/fb/fb.c b/w3mimg/fb/fb.c
@@ -351,7 +351,7 @@ fb_height(void)
int
fb_clear(int x, int y, int w, int h, int r, int g, int b)
{
- int i, j, offset_fb;
+ int i, offset_fb;
static int rr = -1, gg = -1, bb = -1;
static char *tmp = NULL;
diff --git a/w3mimg/fb/fb_img.h b/w3mimg/fb/fb_img.h
@@ -5,6 +5,7 @@
FB_IMAGE **fb_image_load(char *filename, int w, int h, int n);
void fb_image_set_bg(int r, int g, int b);
+int fb_image_clear(int x, int y, int w, int h);
int get_image_size(char *filename, int *w, int *h);
#endif