mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
Fixed constness compiler warning in pdo_mysql
This commit is contained in:
@@ -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);
|
||||
} /* }}} */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user