diff options
author | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2009-01-13 17:42:47 -0200 |
---|---|---|
committer | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2009-01-13 17:42:47 -0200 |
commit | e8bd6bcaf2cbe8306cc9a4821e8ea7a54a7e56a2 (patch) | |
tree | a1e5b24b67d8f53ddc63d602620b9723c7b76816 /transform.c | |
parent | 7e3208d263050d0ad4502f7d7d7d64d7ec84a4ad (diff) |
Ansification and compile warning fixes.
This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
make distcheck and all gcc 4.3 and sparse warnings.
Diffstat (limited to 'transform.c')
-rw-r--r-- | transform.c | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/transform.c b/transform.c index be4896c..0f02498 100644 --- a/transform.c +++ b/transform.c @@ -83,13 +83,9 @@ TDrawArc ( #endif void -TFillArc (dpy, d, gc, t, x, y, width, height, angle1, angle2) - Display *dpy; - Drawable d; - GC gc; - Transform *t; - double x, y, width, height; - int angle1, angle2; +TFillArc (Display *dpy, Drawable d, GC gc, Transform *t, + double x, double y, double width, double height, + int angle1, int angle2) { int xx, xy, xw, xh; @@ -109,10 +105,9 @@ TFillArc (dpy, d, gc, t, x, y, width, height, angle1, angle2) } void -SetTransform (t, xx1, xx2, xy1, xy2, tx1, tx2, ty1, ty2) - Transform *t; - int xx1, xx2, xy1, xy2; - double tx1, tx2, ty1, ty2; +SetTransform (Transform *t, + int xx1, int xx2, int xy1, int xy2, + double tx1, double tx2, double ty1, double ty2) { t->mx = ((double) xx2 - xx1) / (tx2 - tx1); t->bx = ((double) xx1) - t->mx * tx1; |