aboutsummaryrefslogtreecommitdiffstats
path: root/w3mimg/x11/x11_w3mimg.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-03-26 15:34:55 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-03-26 15:34:55 +0000
commit5eeb41077981c2cc69b09cbe37b5ed8a381cb6e7 (patch)
tree096d104885c7a07e182366c06debe74bfc71cbb8 /w3mimg/x11/x11_w3mimg.c
parent[w3m-dev 03833] gif animation with no delay_time (diff)
downloadw3m-5eeb41077981c2cc69b09cbe37b5ed8a381cb6e7.tar.gz
w3m-5eeb41077981c2cc69b09cbe37b5ed8a381cb6e7.zip
fix indent
Diffstat (limited to 'w3mimg/x11/x11_w3mimg.c')
-rw-r--r--w3mimg/x11/x11_w3mimg.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/w3mimg/x11/x11_w3mimg.c b/w3mimg/x11/x11_w3mimg.c
index 14b9437..910e8d1 100644
--- a/w3mimg/x11/x11_w3mimg.c
+++ b/w3mimg/x11/x11_w3mimg.c
@@ -1,4 +1,4 @@
-/* $Id: x11_w3mimg.c,v 1.16 2003/03/26 15:34:20 ukai Exp $ */
+/* $Id: x11_w3mimg.c,v 1.17 2003/03/26 15:35:20 ukai Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
@@ -43,7 +43,7 @@ struct x11_image {
};
static void
-get_animation_size(GdkPixbufAnimation *animation, int *w, int *h)
+get_animation_size(GdkPixbufAnimation * animation, int *w, int *h)
{
GList *frames;
int iw, ih, n, i;
@@ -59,9 +59,9 @@ get_animation_size(GdkPixbufAnimation *animation, int *w, int *h)
frame = (GdkPixbufFrame *) g_list_nth_data(frames, i);
pixbuf = gdk_pixbuf_frame_get_pixbuf(frame);
iw = gdk_pixbuf_frame_get_x_offset(frame)
- +gdk_pixbuf_get_width(pixbuf);
+ + gdk_pixbuf_get_width(pixbuf);
ih = gdk_pixbuf_frame_get_y_offset(frame)
- + gdk_pixbuf_get_height(pixbuf);
+ + gdk_pixbuf_get_height(pixbuf);
if (iw > *w)
*w = iw;
if (ih > *h)
@@ -366,7 +366,8 @@ x11_load_image(w3mimg_op * self, W3MImage * img, char *fname, int w, int h)
width = gdk_pixbuf_get_width(pixbuf);
height = gdk_pixbuf_get_height(pixbuf);
- if (delay >= 0) ximg->delay = delay;
+ if (delay >= 0)
+ ximg->delay = delay;
if (i > 0) {
switch (action) {