summaryrefslogtreecommitdiff
path: root/src/gd_matrix.c
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2015-01-15 11:05:43 +0100
committerPierre Joye <pierre.php@gmail.com>2015-01-15 11:05:43 +0100
commit2f40d52ddcb76276e223ad0997d1f019622852eb (patch)
tree15f05b6eaceeb4c4af0da328255f8307cfee665e /src/gd_matrix.c
parent0e9c4e005d9f0023661d226471475f931a4d9b5a (diff)
downloadlibgd-2f40d52ddcb76276e223ad0997d1f019622852eb.tar.gz
Fix #138, VS 2010 build error due to double semi column
Diffstat (limited to 'src/gd_matrix.c')
-rw-r--r--src/gd_matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gd_matrix.c b/src/gd_matrix.c
index 182ea35..b7827a0 100644
--- a/src/gd_matrix.c
+++ b/src/gd_matrix.c
@@ -248,7 +248,7 @@ BGD_DECLARE(int) gdAffineShearHorizontal(double dst[6], const double angle)
BGD_DECLARE(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;