summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2015-09-27 18:51:10 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2015-09-27 18:51:10 -0700
commit8e4343b9a13a15a8d210ac9454670680f60b3cc6 (patch)
tree50e2102a8a09848335310ab610bcfd9fb156868f
parent3b4d735abfadabe120d4d3fb62a5fb5483a9aa0e (diff)
Get rid of some extraneous ; at the end of C source lines
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--ULabel.c4
1 files 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);