summaryrefslogtreecommitdiff
path: root/src/node_http2.h
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2019-01-28 13:37:13 +0100
committerAnna Henningsen <anna@addaleax.net>2019-01-31 00:12:28 +0100
commit756b0acce0be643a11872be1b5e36b98e739113b (patch)
tree0699b9fd53d11c834595190d3ef9c5a8a49fb09e /src/node_http2.h
parent15b0ab1651e316538537a5dfb8be92827fc97daa (diff)
downloadandroid-node-v8-756b0acce0be643a11872be1b5e36b98e739113b.tar.gz
android-node-v8-756b0acce0be643a11872be1b5e36b98e739113b.tar.bz2
android-node-v8-756b0acce0be643a11872be1b5e36b98e739113b.zip
src: fix indentation in a few node_http2 enums
PR-URL: https://github.com/nodejs/node/pull/25761 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/node_http2.h')
-rw-r--r--src/node_http2.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/node_http2.h b/src/node_http2.h
index 4446bf4078..68c826a676 100644
--- a/src/node_http2.h
+++ b/src/node_http2.h
@@ -236,11 +236,11 @@ struct nghttp2_header : public MemoryRetainer {
V(PROXY_CONNECTION, "proxy-connection")
enum http_known_headers {
-HTTP_KNOWN_HEADER_MIN,
+ HTTP_KNOWN_HEADER_MIN,
#define V(name, value) HTTP_HEADER_##name,
-HTTP_KNOWN_HEADERS(V)
+ HTTP_KNOWN_HEADERS(V)
#undef V
-HTTP_KNOWN_HEADER_MAX
+ HTTP_KNOWN_HEADER_MAX
};
// While some of these codes are used within the HTTP/2 implementation in
@@ -313,7 +313,7 @@ HTTP_KNOWN_HEADER_MAX
enum http_status_codes {
#define V(name, code) HTTP_STATUS_##name = code,
-HTTP_STATUS_CODES(V)
+ HTTP_STATUS_CODES(V)
#undef V
};