Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <f_l_k@t-online.de>
  • Loading branch information
MarkusVolk committed Oct 28, 2021
commit 762a7610a114217f0eaa19620e4a600a9c4f6fe9
2 changes: 1 addition & 1 deletion src/crypto/crypto_scrypt.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ struct ScryptJob {
static void Initialize(
Environment* env,
v8::Local<v8::Object> target) {}
}
};
#endif // !OPENSSL_NO_SCRIPT

} // namespace crypto
Expand Down