diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2015-09-27 18:51:10 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2015-09-27 18:51:10 -0700 |
commit | 8e4343b9a13a15a8d210ac9454670680f60b3cc6 (patch) | |
tree | 50e2102a8a09848335310ab610bcfd9fb156868f | |
parent | 3b4d735abfadabe120d4d3fb62a5fb5483a9aa0e (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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |