aboutsummaryrefslogtreecommitdiffstats
path: root/src/xlib.c
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2010-01-19 19:28:23 -0800
committerJohn Hawthorn <john.hawthorn@gmail.com>2010-01-19 19:28:23 -0800
commitf7bd697cdf90dd8725b1a7e815750c7192d9e44a (patch)
tree49b746848089f5cc008be47d548688cf1b7a6c4f /src/xlib.c
parentba9dd18ef222e79ac30be5d2251f3e4bc40699fd (diff)
downloadmirror-meh-f7bd697cdf90dd8725b1a7e815750c7192d9e44a.tar.gz
mirror-meh-f7bd697cdf90dd8725b1a7e815750c7192d9e44a.tar.bz2
mirror-meh-f7bd697cdf90dd8725b1a7e815750c7192d9e44a.zip
2 bugs
Diffstat (limited to 'src/xlib.c')
-rw-r--r--src/xlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xlib.c b/src/xlib.c
index 3adda92..393617d 100644
--- a/src/xlib.c
+++ b/src/xlib.c
@@ -72,7 +72,7 @@ static void ximage(struct data_t *data, struct image *img, unsigned int width, u
width, height,
32, 0
);
- ximg->data = malloc(ximg->bytes_per_line * ximg->height);
+ ximg->data = malloc(ximg->bytes_per_line * ximg->height);
XInitImage(ximg);
}
(fast ? nearestscale : scale)(img, ximg->width, ximg->height, ximg->bytes_per_line, ximg->data);