diff options
author | bunnei <bunneidev@gmail.com> | 2019-11-14 19:47:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-14 19:47:23 +0100 |
commit | 360b0d1b3028a845948d47651bf25492273ce125 (patch) | |
tree | ad9518767d3c9a820b6a1dc329d2290249321090 /src/core/hle/service/bcat/module.cpp | |
parent | Merge pull request #3092 from lioncash/util (diff) | |
parent | core: Migrate off deprecated mbedtls functions (diff) | |
download | yuzu-360b0d1b3028a845948d47651bf25492273ce125.tar yuzu-360b0d1b3028a845948d47651bf25492273ce125.tar.gz yuzu-360b0d1b3028a845948d47651bf25492273ce125.tar.bz2 yuzu-360b0d1b3028a845948d47651bf25492273ce125.tar.lz yuzu-360b0d1b3028a845948d47651bf25492273ce125.tar.xz yuzu-360b0d1b3028a845948d47651bf25492273ce125.tar.zst yuzu-360b0d1b3028a845948d47651bf25492273ce125.zip |
Diffstat (limited to 'src/core/hle/service/bcat/module.cpp')
-rw-r--r-- | src/core/hle/service/bcat/module.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/bcat/module.cpp b/src/core/hle/service/bcat/module.cpp index 6d9d1527d..8a7304f86 100644 --- a/src/core/hle/service/bcat/module.cpp +++ b/src/core/hle/service/bcat/module.cpp @@ -46,7 +46,7 @@ u64 GetCurrentBuildID(const Core::System::CurrentBuildProcessID& id) { BCATDigest DigestFile(const FileSys::VirtualFile& file) { BCATDigest out{}; const auto bytes = file->ReadAllBytes(); - mbedtls_md5(bytes.data(), bytes.size(), out.data()); + mbedtls_md5_ret(bytes.data(), bytes.size(), out.data()); return out; } |