summaryrefslogtreecommitdiff
path: root/ext/standard/formatted_print.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-08-11 17:03:37 +0000
committerZeev Suraski <zeev@php.net>2001-08-11 17:03:37 +0000
commitc0404f46311e5b519dc51697e181bb39ca8d09d2 (patch)
tree291959f75d7b2a3f3e171830ed6eea76b5d98b4d /ext/standard/formatted_print.c
parentf6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa (diff)
downloadphp-git-c0404f46311e5b519dc51697e181bb39ca8d09d2.tar.gz
Whitespace
Diffstat (limited to 'ext/standard/formatted_print.c')
-rw-r--r--ext/standard/formatted_print.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/standard/formatted_print.c b/ext/standard/formatted_print.c
index 8a175989b2..e34dda1ad8 100644
--- a/ext/standard/formatted_print.c
+++ b/ext/standard/formatted_print.c
@@ -463,7 +463,7 @@ php_formatted_print(int ht, int *len, int use_array TSRMLS_DC)
if (currarg >= argc && format[inpos + 1] != '%') {
efree(result);
efree(args);
- php_error(E_WARNING, "%s(): too few arguments",get_active_function_name(TSRMLS_C));
+ php_error(E_WARNING, "%s(): too few arguments", get_active_function_name(TSRMLS_C));
return NULL;
}
/* starting a new format specifier, reset variables */
@@ -652,7 +652,7 @@ PHP_FUNCTION(user_sprintf)
if ((result=php_formatted_print(ht, &len, 0 TSRMLS_CC))==NULL) {
RETURN_FALSE;
}
- RETVAL_STRINGL(result,len,1);
+ RETVAL_STRINGL(result, len, 1);
efree(result);
}
/* }}} */
@@ -667,7 +667,7 @@ PHP_FUNCTION(vsprintf)
if ((result=php_formatted_print(ht, &len, 1 TSRMLS_CC))==NULL) {
RETURN_FALSE;
}
- RETVAL_STRINGL(result,len,1);
+ RETVAL_STRINGL(result, len, 1);
efree(result);
}
/* }}} */
@@ -682,7 +682,7 @@ PHP_FUNCTION(user_printf)
if ((result=php_formatted_print(ht, &len, 0 TSRMLS_CC))==NULL) {
RETURN_FALSE;
}
- PHPWRITE(result,len);
+ PHPWRITE(result, len);
efree(result);
}
/* }}} */
@@ -697,7 +697,7 @@ PHP_FUNCTION(vprintf)
if ((result=php_formatted_print(ht, &len, 1 TSRMLS_CC))==NULL) {
RETURN_FALSE;
}
- PHPWRITE(result,len);
+ PHPWRITE(result, len);
efree(result);
}
/* }}} */