From: Dana Jansens Date: Mon, 31 Mar 2003 07:49:40 +0000 (+0000) Subject: was not using the pointer properly. leaving the value untouched X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=8d19206866b70307aac5854ad267af285bb6d544;p=chaz%2Fopenbox was not using the pointer properly. leaving the value untouched --- diff --git a/openbox/frame.c b/openbox/frame.c index eee01e48..2976ca2f 100644 --- a/openbox/frame.c +++ b/openbox/frame.c @@ -76,7 +76,7 @@ void frame_frame_gravity(Frame *self, int *x, int *y) break; case StaticGravity: case ForgetGravity: - x += self->size.left; + *x += self->size.left; break; }