Skip to content

Commit 109f8e2

Browse files
committed
node_http_parser: fix whitespace errors
1 parent 41e53e5 commit 109f8e2

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/node_http_parser.cc

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -81,19 +81,19 @@ static char* current_buffer_data;
8181
static size_t current_buffer_len;
8282

8383

84-
#define HTTP_CB(name) \
85-
static int name(http_parser* p_) { \
86-
Parser* self = container_of(p_, Parser, parser_); \
87-
return self->name##_(); \
88-
} \
89-
int name##_()
90-
91-
92-
#define HTTP_DATA_CB(name) \
93-
static int name(http_parser* p_, const char* at, size_t length) { \
94-
Parser* self = container_of(p_, Parser, parser_); \
95-
return self->name##_(at, length); \
96-
} \
84+
#define HTTP_CB(name) \
85+
static int name(http_parser* p_) { \
86+
Parser* self = container_of(p_, Parser, parser_); \
87+
return self->name##_(); \
88+
} \
89+
int name##_()
90+
91+
92+
#define HTTP_DATA_CB(name) \
93+
static int name(http_parser* p_, const char* at, size_t length) { \
94+
Parser* self = container_of(p_, Parser, parser_); \
95+
return self->name##_(at, length); \
96+
} \
9797
int name##_(const char* at, size_t length)
9898

9999

0 commit comments

Comments
 (0)