From: Xinchen Hui Date: Mon, 21 Nov 2011 05:57:45 +0000 (+0000) Subject: C++ style comment X-Git-Tag: php-5.5.0alpha1~849 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b0cf58633cc10ec5cf576e1a5cd7e42395ee9b85;p=php C++ style comment --- diff --git a/ext/session/session.c b/ext/session/session.c index 0a980603ff..edfdf6e8e2 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -2428,7 +2428,7 @@ static int php_session_rfc1867_callback(unsigned int event, void *event_data, vo if (PS(rfc1867_freq) >= 0) { progress->update_step = PS(rfc1867_freq); - } else if (PS(rfc1867_freq) < 0) { // % of total size + } else if (PS(rfc1867_freq) < 0) { /* % of total size */ progress->update_step = progress->content_length * -PS(rfc1867_freq) / 100; } progress->next_update = 0;