summaryrefslogtreecommitdiff
path: root/ext/standard/exec.c
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2007-10-04 13:31:11 +0000
committerJani Taskinen <jani@php.net>2007-10-04 13:31:11 +0000
commit1be447eb9584794d40d91fcf56b71c90d76ee46d (patch)
treeca498f96271fb517c6810d9cc342912854dfec31 /ext/standard/exec.c
parent91e99495af22ffba7ec6c258d6c8c288ac5c3177 (diff)
downloadphp-git-1be447eb9584794d40d91fcf56b71c90d76ee46d.tar.gz
MFH: Removed ending dots from error messages
Diffstat (limited to 'ext/standard/exec.c')
-rw-r--r--ext/standard/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/exec.c b/ext/standard/exec.c
index 12103c2190..71cc2ea899 100644
--- a/ext/standard/exec.c
+++ b/ext/standard/exec.c
@@ -463,7 +463,7 @@ PHP_FUNCTION(proc_nice)
errno = 0;
nice(pri);
if (errno) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only a super user may attempt to increase the priority of a process.");
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only a super user may attempt to increase the priority of a process");
RETURN_FALSE;
}