From: Andrey Hristov Date: Thu, 28 Aug 2003 20:26:32 +0000 (+0000) Subject: \n at the end of the message is not needed X-Git-Tag: php-4.3.4RC1~152 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b767129303721224281ec2ef109a164806621aca;p=php \n at the end of the message is not needed --- 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 } }