summaryrefslogtreecommitdiff
path: root/ext/standard
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard')
-rw-r--r--ext/standard/basic_functions.c2
-rw-r--r--ext/standard/exec.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c
index 89e354891a..52af756dfc 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -1508,7 +1508,7 @@ PHP_FUNCTION(error_log)
PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers TSRMLS_DC)
{
- php_stream * stream = NULL;
+ php_stream *stream = NULL;
switch (opt_err) {
diff --git a/ext/standard/exec.c b/ext/standard/exec.c
index 34a4cfbaf8..f5f337fee5 100644
--- a/ext/standard/exec.c
+++ b/ext/standard/exec.c
@@ -51,7 +51,7 @@ int php_Exec(int type, char *cmd, pval *array, pval *return_value TSRMLS_DC)
int overflow_limit, lcmd, ldir;
int rsrc_id;
char *b, *c, *d=NULL;
- php_stream * stream = NULL;
+ php_stream *stream = NULL;
#if PHP_SIGCHILD
void (*sig_handler)();
#endif