summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2005-07-14 02:20:52 +0000
committerWez Furlong <wez@php.net>2005-07-14 02:20:52 +0000
commitfc48f9096d3530fc6d33891a96f690fbe190fb69 (patch)
tree65bb183e755ec552b30a6e54fde4b06a27e7516d
parentd025a14d33f7e9568f7f6d9630ab86d5b4e11b35 (diff)
downloadphp-git-fc48f9096d3530fc6d33891a96f690fbe190fb69.tar.gz
gah!
-rwxr-xr-xext/pdo_mysql/mysql_statement.c2
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;