diff options
| author | Andrey Hristov <andrey@php.net> | 2010-06-10 09:37:58 +0000 |
|---|---|---|
| committer | Andrey Hristov <andrey@php.net> | 2010-06-10 09:37:58 +0000 |
| commit | 408d786aa23ea38604babfe0d0373fcd37c43a32 (patch) | |
| tree | 22383df3046fa2e91a8fef63a0189b4a29ed4816 /ext/mysqlnd | |
| parent | 63c7b02424a4dbcc2b870d7ad2d1c6459ab30c57 (diff) | |
| download | php-git-408d786aa23ea38604babfe0d0373fcd37c43a32.tar.gz | |
void functions return nothing
Diffstat (limited to 'ext/mysqlnd')
| -rw-r--r-- | ext/mysqlnd/mysqlnd_ps.c | 2 |
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); |
