diff options
author | Pierre Joye <pierre.php@gmail.com> | 2016-06-27 11:51:40 +0700 |
---|---|---|
committer | Pierre Joye <pierre.php@gmail.com> | 2016-06-27 11:52:43 +0700 |
commit | 907115fbb980862934d0de91af4977a216745039 (patch) | |
tree | a0af90d494e0adcfd6d358ecc62f09f710745847 | |
parent | a0f9f8f7bd0d3a6c6afd6d180b8e75d93aadddfa (diff) | |
download | libgd-907115fbb980862934d0de91af4977a216745039.tar.gz |
fix php 72494, CID 149753, color is unsigned int, remove useless <0 comparison
-rw-r--r-- | tests/gdimagecrop/php_bug_72494.c | 2 |
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); |