summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2013-11-14 14:30:08 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-11-18 10:13:35 +0100
commit32a57751252ffe1adc8f3dc95ff937d2daa3f856 (patch)
treed96cd31857275b029b1b6b12152c998efeb65eb2 /lib
parentc8daebdfd857feb338f12b2d8cdb95c1ae87698d (diff)
downloadbarebox-32a57751252ffe1adc8f3dc95ff937d2daa3f856.tar.gz
barebox-32a57751252ffe1adc8f3dc95ff937d2daa3f856.tar.xz
barebox: remove double semicolons
Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib')
-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,