diff options
author | Andrey Hristov <andrey@php.net> | 2003-08-28 20:26:32 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2003-08-28 20:26:32 +0000 |
commit | b767129303721224281ec2ef109a164806621aca (patch) | |
tree | 2203b1431db7bbfd8bc1c13401c017f516db816f /ext/session | |
parent | 6d57013b3ec811a0a43b96e978381755a90db658 (diff) | |
download | php-git-b767129303721224281ec2ef109a164806621aca.tar.gz |
\n at the end of the message is not needed
Diffstat (limited to 'ext/session')
-rw-r--r-- | ext/session/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c index 6a8cb85da8..961e21ffc1 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -1055,7 +1055,7 @@ PHPAPI void php_session_start(TSRMLS_D) PS(mod)->s_gc(&PS(mod_data), PS(gc_maxlifetime), &nrdels TSRMLS_CC); #if 0 if (nrdels != -1) - php_error_docref(NULL TSRMLS_CC, E_NOTICE, "purged %d expired session objects\n", nrdels); + php_error_docref(NULL TSRMLS_CC, E_NOTICE, "purged %d expired session objects", nrdels); #endif } } |