mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fixed constness compiler warning in pdo_mysql
This commit is contained in:
parent
efe22e3bfa
commit
33c99f9a44
1 changed files with 1 additions and 1 deletions
|
@ -886,7 +886,7 @@ static int pdo_mysql_stmt_col_meta(pdo_stmt_t *stmt, long colno, zval *return_va
|
|||
#endif
|
||||
|
||||
add_assoc_zval(return_value, "flags", flags);
|
||||
add_assoc_string(return_value, "table",(F->table?F->table:""), 1);
|
||||
add_assoc_string(return_value, "table",(char *) (F->table?F->table:""), 1);
|
||||
PDO_DBG_RETURN(SUCCESS);
|
||||
} /* }}} */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue