diff options
Diffstat (limited to 'src/cms/cms_enc.cpp')
-rw-r--r-- | src/cms/cms_enc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cms/cms_enc.cpp b/src/cms/cms_enc.cpp index cd739ef08..1a45a6a46 100644 --- a/src/cms/cms_enc.cpp +++ b/src/cms/cms_enc.cpp @@ -30,7 +30,7 @@ void CMS_Encoder::set_data(const byte buf[], size_t length) */ void CMS_Encoder::set_data(const std::string& str) { - set_data((const byte*)str.c_str(), str.length()); + set_data(reinterpret_cast<const byte*>(str.c_str()), str.length()); } /* |