indeyets                Thu Oct 16 12:52:39 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/sqlite sqlite.c 
  Log:
  Updated functions-signatures (const)
  
http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite/sqlite.c?r1=1.166.2.13.2.9.2.11&r2=1.166.2.13.2.9.2.12&diff_format=u
Index: php-src/ext/sqlite/sqlite.c
diff -u php-src/ext/sqlite/sqlite.c:1.166.2.13.2.9.2.11 
php-src/ext/sqlite/sqlite.c:1.166.2.13.2.9.2.12
--- php-src/ext/sqlite/sqlite.c:1.166.2.13.2.9.2.11     Fri Aug  8 22:07:06 2008
+++ php-src/ext/sqlite/sqlite.c Thu Oct 16 12:52:38 2008
@@ -17,7 +17,7 @@
    |          Marcus Boerger <[EMAIL PROTECTED]>                              |
    +----------------------------------------------------------------------+
 
-   $Id: sqlite.c,v 1.166.2.13.2.9.2.11 2008/08/08 22:07:06 colder Exp $
+   $Id: sqlite.c,v 1.166.2.13.2.9.2.12 2008/10/16 12:52:38 indeyets Exp $
 */
 
 #ifdef HAVE_CONFIG_H
@@ -1274,12 +1274,12 @@
                obj->u._type = _ptr; \
        }
 
-static zend_class_entry *sqlite_get_ce_query(zval *object TSRMLS_DC)
+static zend_class_entry *sqlite_get_ce_query(const zval *object TSRMLS_DC)
 {
        return sqlite_ce_query;
 }
 
-static zend_class_entry *sqlite_get_ce_ub_query(zval *object TSRMLS_DC)
+static zend_class_entry *sqlite_get_ce_ub_query(const zval *object TSRMLS_DC)
 {
        return sqlite_ce_ub_query;
 }
@@ -1520,7 +1520,7 @@
 {
        php_info_print_table_start();
        php_info_print_table_header(2, "SQLite support", "enabled");
-       php_info_print_table_row(2, "PECL Module version", 
PHP_SQLITE_MODULE_VERSION " $Id: sqlite.c,v 1.166.2.13.2.9.2.11 2008/08/08 
22:07:06 colder Exp $");
+       php_info_print_table_row(2, "PECL Module version", 
PHP_SQLITE_MODULE_VERSION " $Id: sqlite.c,v 1.166.2.13.2.9.2.12 2008/10/16 
12:52:38 indeyets Exp $");
        php_info_print_table_row(2, "SQLite Library", sqlite_libversion());
        php_info_print_table_row(2, "SQLite Encoding", sqlite_libencoding());
        php_info_print_table_end();



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

Reply via email to