Skip to content

Commit 35454e0

Browse files
danbevaddaleax
authored andcommitted
src: fix indentation in a few node_http2 enums
PR-URL: #25761 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 3f080d1 commit 35454e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/node_http2.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,11 @@ struct nghttp2_header : public MemoryRetainer {
236236
V(PROXY_CONNECTION, "proxy-connection")
237237

238238
enum http_known_headers {
239-
HTTP_KNOWN_HEADER_MIN,
239+
HTTP_KNOWN_HEADER_MIN,
240240
#define V(name, value) HTTP_HEADER_##name,
241-
HTTP_KNOWN_HEADERS(V)
241+
HTTP_KNOWN_HEADERS(V)
242242
#undef V
243-
HTTP_KNOWN_HEADER_MAX
243+
HTTP_KNOWN_HEADER_MAX
244244
};
245245

246246
// While some of these codes are used within the HTTP/2 implementation in
@@ -313,7 +313,7 @@ HTTP_KNOWN_HEADER_MAX
313313

314314
enum http_status_codes {
315315
#define V(name, code) HTTP_STATUS_##name = code,
316-
HTTP_STATUS_CODES(V)
316+
HTTP_STATUS_CODES(V)
317317
#undef V
318318
};
319319

0 commit comments

Comments
 (0)