summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_report.c
diff options
context:
space:
mode:
authorUlf Wendel <uw@php.net>2010-10-04 10:02:58 +0000
committerUlf Wendel <uw@php.net>2010-10-04 10:02:58 +0000
commite20c62d3be14b45de482d385c18f35c529347d8a (patch)
tree1d893ebd468eec173633eb8f2fa2e04b16ccbe6a /ext/mysqli/mysqli_report.c
parente8c87c6d21670ced24b98a31a5b81dff6a526ef2 (diff)
downloadphp-git-e20c62d3be14b45de482d385c18f35c529347d8a.tar.gz
Sorry for the commit but compiler warnings are annoying and so are white spaces at the end of a line, if one uses an editor which removes them on save and diff's get blown
up by white space changes... Changes: - remove end of line white space - fix compiler warning "ext/mysqli/mysqli_priv.h:156:27: warning: no newline at end of file" - fix compiler warning "ext/mysqli/mysqli_fe.h:135:25: warning: no newline at end of file" - fix compiler warning "ext/mysqli/mysqli.c:896:11: warning: extra tokens at end of #ifdef directive"
Diffstat (limited to 'ext/mysqli/mysqli_report.c')
-rw-r--r--ext/mysqli/mysqli_report.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/mysqli/mysqli_report.c b/ext/mysqli/mysqli_report.c
index 44da842ca9..6139ebe775 100644
--- a/ext/mysqli/mysqli_report.c
+++ b/ext/mysqli/mysqli_report.c
@@ -15,7 +15,7 @@
| Author: Georg Richter <georg@php.net> |
+----------------------------------------------------------------------+
- $Id$
+ $Id$
*/
#ifdef HAVE_CONFIG_H
@@ -33,7 +33,7 @@ PHP_FUNCTION(mysqli_report)
{
long flags;
-
+
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &flags) == FAILURE) {
return;
}
@@ -44,14 +44,14 @@ PHP_FUNCTION(mysqli_report)
}
/* }}} */
-/* {{{ void php_mysqli_report_error(char *sqlstate, int errorno, char *error) */
+/* {{{ void php_mysqli_report_error(char *sqlstate, int errorno, char *error) */
void php_mysqli_report_error(const char *sqlstate, int errorno, const char *error TSRMLS_DC)
{
php_mysqli_throw_sql_exception((char *)sqlstate, errorno TSRMLS_CC, "%s", error);
}
/* }}} */
-/* {{{ void php_mysqli_report_index() */
+/* {{{ void php_mysqli_report_index() */
void php_mysqli_report_index(const char *query, unsigned int status TSRMLS_DC) {
char index[15];