summaryrefslogtreecommitdiff
path: root/ext/swf
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2000-05-23 12:14:20 +0000
committerSterling Hughes <sterling@php.net>2000-05-23 12:14:20 +0000
commitae0d73e87da86645d4f3c017990f018616568896 (patch)
treee5bf2416892d6ce315a06cbc332204b44c1b93d4 /ext/swf
parentc9158aec30d929af0ccd14687c43968073aeeff5 (diff)
downloadphp-git-ae0d73e87da86645d4f3c017990f018616568896.tar.gz
'char *' to 'char'
Diffstat (limited to 'ext/swf')
-rw-r--r--ext/swf/swf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/swf/swf.h b/ext/swf/swf.h
index 2d92c9c0d9..5cd394947c 100644
--- a/ext/swf/swf.h
+++ b/ext/swf/swf.h
@@ -147,7 +147,7 @@ void swf_pushmatrix(void);
void swf_popmatrix(void);
void swf_scale(double x, double y, double z);
void swf_translate(double x, double y, double z);
-void swf_rotate(double angle, char *axis);
+void swf_rotate(double angle, char axis);
void swf_polarview(double dist, double azimuth, double incidence, double twist);
void swf_lookat(double vx, double vy, double vz, double px, double py, double pz, double twist);
void swf_perspective(double fovy, double aspect, double near, double far);