diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-07-25 21:45:21 -0300 |
---|---|---|
committer | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-07-25 21:47:04 -0300 |
commit | 9e4d590b1982cf38f23948dff1beffd06fd9e0d3 (patch) | |
tree | 95fa8058f9b59f544ea98d2669cc1c5a9d44cce5 /ext/gd/libgd/gd_matrix.c | |
parent | 8d18d631b6145dea0dd579bcc8ffe446271b511d (diff) | |
download | php-git-9e4d590b1982cf38f23948dff1beffd06fd9e0d3.tar.gz |
Remove extra semicolons
Diffstat (limited to 'ext/gd/libgd/gd_matrix.c')
-rw-r--r-- | ext/gd/libgd/gd_matrix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/gd/libgd/gd_matrix.c b/ext/gd/libgd/gd_matrix.c index 83438bdbe3..0a67f1dc26 100644 --- a/ext/gd/libgd/gd_matrix.c +++ b/ext/gd/libgd/gd_matrix.c @@ -246,7 +246,7 @@ int gdAffineShearHorizontal(double dst[6], const double angle) int gdAffineShearVertical(double dst[6], const double angle) { dst[0] = 1; - dst[1] = tan(angle * M_PI / 180.0);; + dst[1] = tan(angle * M_PI / 180.0); dst[2] = 0; dst[3] = 1; dst[4] = 0; @@ -331,4 +331,3 @@ int gdAffineEqual (const double m1[6], const double m2[6]) fabs (m1[4] - m2[4]) < GD_EPSILON && fabs (m1[5] - m2[5]) < GD_EPSILON); } - |