diff options
| author | Wez Furlong <wez@php.net> | 2005-07-14 02:20:52 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2005-07-14 02:20:52 +0000 |
| commit | fc48f9096d3530fc6d33891a96f690fbe190fb69 (patch) | |
| tree | 65bb183e755ec552b30a6e54fde4b06a27e7516d /ext/pdo_mysql/mysql_statement.c | |
| parent | d025a14d33f7e9568f7f6d9630ab86d5b4e11b35 (diff) | |
| download | php-git-fc48f9096d3530fc6d33891a96f690fbe190fb69.tar.gz | |
gah!
Diffstat (limited to 'ext/pdo_mysql/mysql_statement.c')
| -rwxr-xr-x | ext/pdo_mysql/mysql_statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_mysql/mysql_statement.c b/ext/pdo_mysql/mysql_statement.c index 2d8a6456b3..e35162b8db 100755 --- a/ext/pdo_mysql/mysql_statement.c +++ b/ext/pdo_mysql/mysql_statement.c @@ -155,7 +155,7 @@ static int pdo_mysql_stmt_execute(pdo_stmt_t *stmt TSRMLS_DC) ; row_count = mysql_stmt_affected_rows(S->stmt); - if (row_cont != (my_ulonglong)-1) { + if (row_count != (my_ulonglong)-1) { stmt->row_count = row_count; } return 1; |
