summaryrefslogtreecommitdiff
path: root/ext/standard/syslog.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/syslog.c
parentf6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa (diff)
downloadphp-git-c0404f46311e5b519dc51697e181bb39ca8d09d2.tar.gz
Whitespace
Diffstat (limited to 'ext/standard/syslog.c')
-rw-r--r--ext/standard/syslog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c
index 594891ed5b..a166496d81 100644
--- a/ext/standard/syslog.c
+++ b/ext/standard/syslog.c
@@ -217,7 +217,7 @@ PHP_FUNCTION(openlog)
if (BG(syslog_device)) {
efree(BG(syslog_device));
}
- BG(syslog_device) = estrndup((*ident)->value.str.val,(*ident)->value.str.len);
+ BG(syslog_device) = estrndup((*ident)->value.str.val, (*ident)->value.str.len);
openlog(BG(syslog_device), (*option)->value.lval, (*facility)->value.lval);
RETURN_TRUE;
}
@@ -253,7 +253,7 @@ PHP_FUNCTION(syslog)
* this will cause problems.
*/
- php_syslog((*priority)->value.lval, "%.500s",(*message)->value.str.val);
+ php_syslog((*priority)->value.lval, "%.500s", (*message)->value.str.val);
RETURN_TRUE;
}
/* }}} */