diff options
author | Jack Lloyd <[email protected]> | 2017-12-23 06:00:02 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-23 06:00:02 -0500 |
commit | eb6c280b76b6f1d5909da016ee7f4c8fa52eb406 (patch) | |
tree | cfa737cf90729222a6a69d9df83610b8d2ef5010 /src/lib/entropy | |
parent | 969007e52ec5f5d5d1c8ba8b54e8cd3c9b117f04 (diff) |
Avoid uninitialized param warning
Diffstat (limited to 'src/lib/entropy')
-rw-r--r-- | src/lib/entropy/entropy_srcs.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/entropy/entropy_srcs.cpp b/src/lib/entropy/entropy_srcs.cpp index c05ff9495..3dae27460 100644 --- a/src/lib/entropy/entropy_srcs.cpp +++ b/src/lib/entropy/entropy_srcs.cpp @@ -123,6 +123,7 @@ std::unique_ptr<Entropy_Source> Entropy_Source::create(const std::string& name) } #endif + BOTAN_UNUSED(name); return std::unique_ptr<Entropy_Source>(); } |