mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fixed constness compiler warning in pdo_mysql
This commit is contained in:
parent
cc1eaba454
commit
d6efd2fef4
1 changed files with 1 additions and 1 deletions
|
@ -867,7 +867,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