summaryrefslogtreecommitdiffstats
path: root/lib/gui/bmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gui/bmp.c')
-rw-r--r--lib/gui/bmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gui/bmp.c b/lib/gui/bmp.c
index dcf30952d2..6943a1c8e0 100644
--- a/lib/gui/bmp.c
+++ b/lib/gui/bmp.c
@@ -19,8 +19,8 @@ struct image *bmp_open(char *inbuf, int insize)
}
img->data = inbuf;
- img->height = le32_to_cpu(bmp->header.height);;
- img->width = le32_to_cpu(bmp->header.width);;
+ img->height = le32_to_cpu(bmp->header.height);
+ img->width = le32_to_cpu(bmp->header.width);
img->bits_per_pixel = le16_to_cpu(bmp->header.bit_count);
pr_debug("bmp: %d x %d x %d data@0x%p\n", img->width, img->height,