Skip to content

Commit 3485ec4

Browse files
Nyholmnikic
authored andcommitted
Small CS fix
The comments were incorrectly aligned. Fix this by dropping the alignment and moving the comments before the declarations. Closes GH-5975.
1 parent 824541d commit 3485ec4

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

sapi/fpm/fpm/fpm_request.h

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@
33
#ifndef FPM_REQUEST_H
44
#define FPM_REQUEST_H 1
55

6-
void fpm_request_accepting(); /* hanging in accept() */
7-
void fpm_request_reading_headers(); /* start reading fastcgi request from very first byte */
8-
void fpm_request_info(); /* not a stage really but a point in the php code, where all request params have become known to sapi */
9-
void fpm_request_executing(); /* the script is executing */
10-
void fpm_request_end(void); /* request ended: script response have been sent to web server */
11-
void fpm_request_finished(); /* request processed: cleaning current request */
6+
/* hanging in accept() */
7+
void fpm_request_accepting();
8+
/* start reading fastcgi request from very first byte */
9+
void fpm_request_reading_headers();
10+
/* not a stage really but a point in the php code, where all request params have become known to sapi */
11+
void fpm_request_info();
12+
/* the script is executing */
13+
void fpm_request_executing();
14+
/* request ended: script response have been sent to web server */
15+
void fpm_request_end(void);
16+
/* request processed: cleaning current request */
17+
void fpm_request_finished();
1218

1319
struct fpm_child_s;
1420
struct timeval;

0 commit comments

Comments
 (0)