Skip to content

Commit bb60522

Browse files
author
andrey
committed
fix trace log messages
git-svn-id: http://svn.php.net/repository/php/php-src/trunk@318687 c90b9560-bf6c-de11-be94-00142212c4b1
1 parent 2e1ba26 commit bb60522

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/mysqlnd/mysqlnd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2633,7 +2633,7 @@ MYSQLND_METHOD(mysqlnd_conn, clone_object)(MYSQLND * const conn TSRMLS_DC)
26332633
static void
26342634
MYSQLND_METHOD_PRIVATE(mysqlnd_conn, dtor)(MYSQLND * conn TSRMLS_DC)
26352635
{
2636-
DBG_ENTER("mysqlnd_conn_data::dtor");
2636+
DBG_ENTER("mysqlnd_conn::dtor");
26372637
DBG_INF_FMT("conn=%llu", conn->data->thread_id);
26382638

26392639
conn->data->m->free_reference(conn->data TSRMLS_CC);
@@ -2660,7 +2660,7 @@ MYSQLND_METHOD(mysqlnd_conn, close)(MYSQLND * conn_handle, enum_connection_close
26602660
};
26612661
enum_mysqlnd_collected_stats statistic = close_type_to_stat_map[close_type];
26622662

2663-
DBG_ENTER("mysqlnd_conn_data::close");
2663+
DBG_ENTER("mysqlnd_conn::close");
26642664
DBG_INF_FMT("conn=%llu", conn->thread_id);
26652665

26662666
if (PASS == conn->m->local_tx_start(conn, this_func TSRMLS_CC)) {

0 commit comments

Comments
 (0)