tony2001                Mon Jan 22 09:05:19 2007 UTC

  Modified files:              
    /php-src/ext/interbase      ibase_service.c 
  Log:
  fix long/int mess
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/interbase/ibase_service.c?r1=1.14&r2=1.15&diff_format=u
Index: php-src/ext/interbase/ibase_service.c
diff -u php-src/ext/interbase/ibase_service.c:1.14 
php-src/ext/interbase/ibase_service.c:1.15
--- php-src/ext/interbase/ibase_service.c:1.14  Mon Jan  1 09:29:24 2007
+++ php-src/ext/interbase/ibase_service.c       Mon Jan 22 09:05:19 2007
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: ibase_service.c,v 1.14 2007/01/01 09:29:24 sebastian Exp $ */
+/* $Id: ibase_service.c,v 1.15 2007/01/22 09:05:19 tony2001 Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -425,7 +425,8 @@
         */
        zval *res;
        char *db, *bk, buf[200];
-       long dblen, bklen, spb_len, opts = 0;
+       int dblen, bklen, spb_len;
+       long opts = 0;
        zend_bool verbose = 0;
        ibase_service *svm;
 
@@ -489,7 +490,8 @@
 {
        zval *res;
        char buf[128], *db;
-       long action, spb_len, dblen, argument = 0;
+       int dblen, spb_len;
+       long action, argument = 0;
        ibase_service *svm;
 
        RESET_ERRMSG;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to