summaryrefslogtreecommitdiff
path: root/tests/gdimagecrop
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2016-06-27 11:51:40 +0700
committerPierre Joye <pierre.php@gmail.com>2016-06-27 11:52:43 +0700
commit907115fbb980862934d0de91af4977a216745039 (patch)
treea0af90d494e0adcfd6d358ecc62f09f710745847 /tests/gdimagecrop
parenta0f9f8f7bd0d3a6c6afd6d180b8e75d93aadddfa (diff)
downloadlibgd-907115fbb980862934d0de91af4977a216745039.tar.gz
fix php 72494, CID 149753, color is unsigned int, remove useless <0 comparison
Diffstat (limited to 'tests/gdimagecrop')
-rw-r--r--tests/gdimagecrop/php_bug_72494.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gdimagecrop/php_bug_72494.c b/tests/gdimagecrop/php_bug_72494.c
index adaa379..5cb589b 100644
--- a/tests/gdimagecrop/php_bug_72494.c
+++ b/tests/gdimagecrop/php_bug_72494.c
@@ -6,7 +6,7 @@
int main()
{
- gdImagePtr im, exp;
+ gdImagePtr im;
int error = 0;
im = gdImageCreate(50, 50);