From 762a7610a114217f0eaa19620e4a600a9c4f6fe9 Mon Sep 17 00:00:00 2001 From: MarkusVolk Date: Thu, 28 Oct 2021 16:45:09 +0200 Subject: [PATCH] src: add missing semicolon This fixes: | In file included from ../src/node_crypto.h:47, | from ../src/node.cc:46: | ../src/crypto/crypto_scrypt.h:80:2: error: expected ';' after struct definition | 80 | } | | ^ | | ; Signed-off-by: MarkusVolk --- src/crypto/crypto_scrypt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/crypto_scrypt.h b/src/crypto/crypto_scrypt.h index 4ca888e31d4e52..ffde25c4d887c3 100644 --- a/src/crypto/crypto_scrypt.h +++ b/src/crypto/crypto_scrypt.h @@ -77,7 +77,7 @@ struct ScryptJob { static void Initialize( Environment* env, v8::Local target) {} -} +}; #endif // !OPENSSL_NO_SCRIPT } // namespace crypto