From 60979f8d54397e7d7735c6e5a38027be9de32150 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 26 Oct 2017 09:48:14 -0400 Subject: [PATCH] Add missing semicolon Typo introduced in 0d50c7061c2c86c1eaa48979c4b0bb14b2f30a84 Signed-off-by: Stephen Gallagher --- src/node_http2_core-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_http2_core-inl.h b/src/node_http2_core-inl.h index 5bfe1dc19a949c..9735e565b2f0e2 100644 --- a/src/node_http2_core-inl.h +++ b/src/node_http2_core-inl.h @@ -462,7 +462,7 @@ inline void Nghttp2Session::HandlePriorityFrame(const nghttp2_frame* frame) { // good here #if defined(DEBUG) && DEBUG - CHECK_GT(id, 0) + CHECK_GT(id, 0); #endif nghttp2_priority_spec spec = priority_frame.pri_spec;