w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit ab35ad8640e13d76d78e6713188bf7d6849d385d
parent 74616eb070a7856b373bb47a5f782d845ebb41e6
Author: ukai <ukai>
Date:   Fri, 13 Jun 2003 15:03:35 +0000

fix indent

Diffstat:
Mw3mimg/fb/fb_gdkpixbuf.c | 2+-
Mw3mimg/x11/x11_w3mimg.c | 6+++---
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/w3mimg/fb/fb_gdkpixbuf.c b/w3mimg/fb/fb_gdkpixbuf.c @@ -159,7 +159,7 @@ fb_image_load(char *filename, int w, int h, int max_anim) } END: if (tmp_image) - fb_image_free(tmp_image); + fb_image_free(tmp_image); gdk_pixbuf_animation_unref(animation); return fb_frame; } diff --git a/w3mimg/x11/x11_w3mimg.c b/w3mimg/x11/x11_w3mimg.c @@ -408,17 +408,17 @@ x11_load_image(w3mimg_op * self, W3MImage * img, char *fname, int w, int h) switch (gdk_pixbuf_frame_get_action(frame)) { case GDK_PIXBUF_FRAME_RETAIN: XCopyArea(xi->display, ximg->pixmap[i], tmp_pixmap, - xi->imageGC, 0, 0, w, h, 0, 0); + xi->imageGC, 0, 0, w, h, 0, 0); break; case GDK_PIXBUF_FRAME_DISPOSE: break; case GDK_PIXBUF_FRAME_REVERT: XCopyArea(xi->display, ximg->pixmap[0], tmp_pixmap, - xi->imageGC, 0, 0, w, h, 0, 0); + xi->imageGC, 0, 0, w, h, 0, 0); break; default: XCopyArea(xi->display, ximg->pixmap[0], tmp_pixmap, - xi->imageGC, 0, 0, w, h, 0, 0); + xi->imageGC, 0, 0, w, h, 0, 0); break; }