diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2015-09-27 18:54:57 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2015-09-27 18:54:57 -0700 |
commit | e8e2560e3391fa9c240235207a909855bfa7c73f (patch) | |
tree | 98613091084e37aa30e00b7abd40824da6851d39 /src/Geometry.c | |
parent | e7411e7e5299116604ff1f01d9415802607f1051 (diff) |
Get rid of some extraneous ; at the end of C source lines
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/Geometry.c')
-rw-r--r-- | src/Geometry.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Geometry.c b/src/Geometry.c index d64c8e2..66571be 100644 --- a/src/Geometry.c +++ b/src/Geometry.c @@ -456,7 +456,7 @@ _XtMakeGeometryRequest ( ClearRectObjAreas((RectObj)widget, &req.changes); } - hookobj = XtHooksOfDisplay(XtDisplayOfObject(widget));; + hookobj = XtHooksOfDisplay(XtDisplayOfObject(widget)); if (XtHasCallbacks(hookobj, XtNconfigureHook) == XtCallbackHasSome) { req.type = XtHconfigure; req.widget = widget; @@ -573,7 +573,7 @@ void XtResizeWindow( req.changeMask = CWWidth | CWHeight | CWBorderWidth; XConfigureWindow(XtDisplay(w), XtWindow(w), (unsigned) req.changeMask, &req.changes); - hookobj = XtHooksOfDisplay(XtDisplayOfObject(w));; + hookobj = XtHooksOfDisplay(XtDisplayOfObject(w)); if (XtHasCallbacks(hookobj, XtNconfigureHook) == XtCallbackHasSome) { req.type = XtHconfigure; req.widget = w; @@ -661,7 +661,7 @@ void XtConfigureWidget( ClearRectObjAreas((RectObj)w, &old); } } - hookobj = XtHooksOfDisplay(XtDisplayOfObject(w));; + hookobj = XtHooksOfDisplay(XtDisplayOfObject(w)); if (XtHasCallbacks(hookobj, XtNconfigureHook) == XtCallbackHasSome) { req.type = XtHconfigure; req.widget = w; |