From 8e4343b9a13a15a8d210ac9454670680f60b3cc6 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sun, 27 Sep 2015 18:51:10 -0700 Subject: Get rid of some extraneous ; at the end of C source lines Signed-off-by: Alan Coopersmith --- ULabel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ULabel.c b/ULabel.c index 0a524f3..bac4992 100644 --- a/ULabel.c +++ b/ULabel.c @@ -206,7 +206,7 @@ static void _XawLabelDrawUCS(Display *dpy, Drawable d, GC gc, codepoint=(unsigned)'?'; str++; } - ptr->byte1 = (codepoint >> 8) & 0xff;; + ptr->byte1 = (codepoint >> 8) & 0xff; ptr->byte2 = codepoint & 0xff; } XDrawString16(dpy, d, gc, x, y, buf2b, ptr - buf2b); @@ -245,7 +245,7 @@ static int _XawLabelWidthUCS( codepoint=(unsigned)'?'; str++; } - ptr->byte1 = (codepoint >> 8) & 0xff;; + ptr->byte1 = (codepoint >> 8) & 0xff; ptr->byte2 = codepoint & 0xff; } return XTextWidth16(fs, buf2b, ptr - buf2b); -- cgit v1.2.3