[PHP-DEV] cvs: /php3/functions gd.c From: Marko Karppinen (marko <email protected>)
Date: 01/30/00

markonen Sun Jan 30 22:22:11 2000 EDT

  Modified files:
    /php3/functions gd.c
  Log:
  "oops"
  
  
Index: php3/functions/gd.c
diff -u php3/functions/gd.c:1.143 php3/functions/gd.c:1.144
--- php3/functions/gd.c:1.143 Sun Jan 30 21:48:36 2000
+++ php3/functions/gd.c Sun Jan 30 22:22:10 2000
@@ -29,7 +29,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: gd.c,v 1.143 2000/01/30 20:48:36 markonen Exp $ */
+/* $Id: gd.c,v 1.144 2000/01/30 21:22:10 markonen Exp $ */
 
 /* gd 1.2 is copyright 1994, 1995, Quest Protein Database Center,
    Cold Spring Harbor Labs. */
@@ -990,7 +990,7 @@
               while(width & 0x7f << 7*c) c++;
               while(c > 1) fputc(0x80 | (width >> 7*--c) & 0xff, fp);
               fputc(width & 0x7f,fp);
- c = 1; y = im->sy;
+ c = 1; height = im->sy;
               while(height & 0x7f << 7*c) c++;
               while(c > 1) fputc(0x80 | (height >> 7*--c) & 0xff, fp);
               fputc(height & 0x7f,fp);

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>