Justtechjobs.com Find a programming school near you






Online Campus Both


php4-beta | 199912

[PHP4BETA] cvs: /php4/ext/standard string.c From: Andi Gutmans (andi <email protected>)
Date: 12/25/99

andi Sat Dec 25 04:07:26 1999 EDT

  Modified files:
    /php4/ext/standard string.c
  Log:
  - Get rid of two warnings
  
  
Index: php4/ext/standard/string.c
diff -u php4/ext/standard/string.c:1.81 php4/ext/standard/string.c:1.82
--- php4/ext/standard/string.c:1.81 Thu Dec 23 09:59:01 1999
+++ php4/ext/standard/string.c Sat Dec 25 04:06:55 1999
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: string.c,v 1.81 1999/12/23 14:59:01 thies Exp $ */
+/* $Id: string.c,v 1.82 1999/12/25 09:06:55 andi Exp $ */
 
 /* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
 
@@ -396,7 +396,7 @@
 {
         char *c;
         int ch;
- int i;
+ size_t i;
 
         c = s;
         for (i=0; i<len; i++) {
@@ -428,7 +428,7 @@
 {
         register int ch;
         char *c;
- int i;
+ size_t i;
 
         c = s;
         for (i=0; i<len; i++) {

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