From ad4de8d0cdbb1ab03da1d672a4862b55158693b7 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sun, 27 Sep 2015 18:56:32 -0700 Subject: Get rid of some extraneous ; at the end of C source lines Signed-off-by: Alan Coopersmith --- src/TextAction.c | 4 ++-- 1 file 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: -- cgit v1.2.3