summaryrefslogtreecommitdiff
path: root/ext/mysqlnd
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2010-06-10 09:37:58 +0000
committerAndrey Hristov <andrey@php.net>2010-06-10 09:37:58 +0000
commite692080fc5c497f0477733c0030633e20c7e4c92 (patch)
treed8fb68314d24626593742975a09928b0a1502685 /ext/mysqlnd
parentcac310d87e5b75a6ded397ba0857f8a8abb7bc18 (diff)
downloadphp-git-e692080fc5c497f0477733c0030633e20c7e4c92.tar.gz
void functions return nothing
Diffstat (limited to 'ext/mysqlnd')
-rw-r--r--ext/mysqlnd/mysqlnd_ps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_ps.c b/ext/mysqlnd/mysqlnd_ps.c
index d43e20e778..5f97c34040 100644
--- a/ext/mysqlnd/mysqlnd_ps.c
+++ b/ext/mysqlnd/mysqlnd_ps.c
@@ -2016,7 +2016,7 @@ mysqlnd_stmt_separate_one_result_bind(MYSQLND_STMT * const s, unsigned int param
MYSQLND_STMT_DATA * stmt = s? s->data:NULL;
DBG_ENTER("mysqlnd_stmt_separate_one_result_bind");
if (!stmt) {
- DBG_RETURN(FAIL);
+ DBG_VOID_RETURN;
}
DBG_INF_FMT("stmt=%lu result_bind=%p field_count=%u param_no=%d",
stmt->stmt_id, stmt->result_bind, stmt->field_count, param_no);