kalle Tue May 19 10:11:46 2009 UTC Modified files: /php-src/ext/pdo php_pdo_driver.h Log: Fixed compiler warning (HEAD only) http://cvs.php.net/viewvc.cgi/php-src/ext/pdo/php_pdo_driver.h?r1=1.93&r2=1.94&diff_format=u Index: php-src/ext/pdo/php_pdo_driver.h diff -u php-src/ext/pdo/php_pdo_driver.h:1.93 php-src/ext/pdo/php_pdo_driver.h:1.94 --- php-src/ext/pdo/php_pdo_driver.h:1.93 Tue Mar 10 23:39:28 2009 +++ php-src/ext/pdo/php_pdo_driver.h Tue May 19 10:11:46 2009 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_pdo_driver.h,v 1.93 2009/03/10 23:39:28 helly Exp $ */ +/* $Id: php_pdo_driver.h,v 1.94 2009/05/19 10:11:46 kalle Exp $ */ #ifndef PHP_PDO_DRIVER_H #define PHP_PDO_DRIVER_H @@ -259,7 +259,7 @@ /* return last insert id. NULL indicates error condition, otherwise, the return value * MUST be an emalloc'd NULL terminated string. */ -typedef char *(*pdo_dbh_last_id_func)(pdo_dbh_t *dbh, const char *name, int *len TSRMLS_DC); +typedef char *(*pdo_dbh_last_id_func)(pdo_dbh_t *dbh, const char *name, unsigned int *len TSRMLS_DC); /* fetch error information. if stmt is not null, fetch information pertaining * to the statement, otherwise fetch global error information. The driver
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php