From 109f8e2773bbdce8faeb45e616cd194129bab3a6 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 2 Oct 2012 14:49:43 +0200 Subject: [PATCH] node_http_parser: fix whitespace errors --- src/node_http_parser.cc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/node_http_parser.cc b/src/node_http_parser.cc index b29afe25690..eb05a8fd5fe 100644 --- a/src/node_http_parser.cc +++ b/src/node_http_parser.cc @@ -81,19 +81,19 @@ static char* current_buffer_data; static size_t current_buffer_len; -#define HTTP_CB(name) \ - static int name(http_parser* p_) { \ - Parser* self = container_of(p_, Parser, parser_); \ - return self->name##_(); \ - } \ - int name##_() +#define HTTP_CB(name) \ + static int name(http_parser* p_) { \ + Parser* self = container_of(p_, Parser, parser_); \ + return self->name##_(); \ + } \ + int name##_() -#define HTTP_DATA_CB(name) \ - static int name(http_parser* p_, const char* at, size_t length) { \ - Parser* self = container_of(p_, Parser, parser_); \ - return self->name##_(at, length); \ - } \ +#define HTTP_DATA_CB(name) \ + static int name(http_parser* p_, const char* at, size_t length) { \ + Parser* self = container_of(p_, Parser, parser_); \ + return self->name##_(at, length); \ + } \ int name##_(const char* at, size_t length)