]> Dogcows Code - chaz/openbox/commitdiff
was not using the pointer properly. leaving the value untouched
authorDana Jansens <danakj@orodu.net>
Mon, 31 Mar 2003 07:49:40 +0000 (07:49 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 31 Mar 2003 07:49:40 +0000 (07:49 +0000)
openbox/frame.c

index eee01e48a75b917b3e92add5a9682503b1cc2629..2976ca2f298e855c594c6755dced0241117d1590 100644 (file)
@@ -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;
     }
 
This page took 0.022804 seconds and 4 git commands to generate.