From 5231d3d4793412156a4fb950ed3812e59929192e Mon Sep 17 00:00:00 2001 From: Darshan Sen Date: Wed, 10 Mar 2021 18:35:12 +0530 Subject: [PATCH] fixup! crypto: add internal error codes --- src/crypto/crypto_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/crypto_util.h b/src/crypto/crypto_util.h index 85c376da904b95..2d769210892b58 100644 --- a/src/crypto/crypto_util.h +++ b/src/crypto/crypto_util.h @@ -209,7 +209,7 @@ void CryptoErrorStore::Insert(const NodeCryptoError error, Args&&... args) { error_string = "No error"; break; } - errors.emplace_back(SPrintF(error_string, + errors_.emplace_back(SPrintF(error_string, std::forward(args)...)); }