Fixed constness compiler warning in pdo_mysql

This commit is contained in:
Kalle Sommer Nielsen 2010-10-05 09:58:15 +00:00
parent efe22e3bfa
commit 33c99f9a44

View file

@ -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);
} /* }}} */