From a39d3f20a72d451ff0779544bc87b7962ecd77ed Mon Sep 17 00:00:00 2001 From: Josh Cooper Date: Fri, 21 Oct 2022 00:02:42 -0700 Subject: [PATCH] Replaces unsigned integer for freq map's value to ensure reasonable p's --- plugins/spectate/spectate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/spectate/spectate.cpp b/plugins/spectate/spectate.cpp index 8e4575fb0..a0011740f 100644 --- a/plugins/spectate/spectate.cpp +++ b/plugins/spectate/spectate.cpp @@ -54,7 +54,7 @@ df::job* job_watched = nullptr; int32_t timestamp = -1; std::set job_tracker; -std::map freq; +std::map freq; std::default_random_engine RNG; void enable_auto_unpause(color_ostream &out, bool state);