summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2015-09-27 18:56:32 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2015-09-27 18:56:32 -0700
commitad4de8d0cdbb1ab03da1d672a4862b55158693b7 (patch)
tree190f282c921e27b204f0b0b796122e9d9f866f1d
parent342d3a8f74bf272235c5eca2b62bd63d3e1e556d (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--src/TextAction.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TextAction.c b/src/TextAction.c
index 8d8fe00..f5aaac7 100644
--- a/src/TextAction.c
+++ b/src/TextAction.c
@@ -148,8 +148,8 @@ NotePosition(TextWidget ctx, XEvent* event)
{
XRectangle cursor;
XawTextSinkGetCursorBounds(ctx->text.sink, &cursor);
- ctx->text.ev_x = cursor.x + cursor.width / 2;;
- ctx->text.ev_y = cursor.y + cursor.height / 2;;
+ ctx->text.ev_x = cursor.x + cursor.width / 2;
+ ctx->text.ev_y = cursor.y + cursor.height / 2;
}
break;
case MotionNotify: