From a8fb7a2eda28a9bc9d11e8aac0a7a95dbe523e5f Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Fri, 8 Jul 2022 00:00:47 -0700 Subject: [PATCH] fix gcc overflow warning --- src/SendCommands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SendCommands.cc b/src/SendCommands.cc index c22e7d00..1e6fe9a6 100644 --- a/src/SendCommands.cc +++ b/src/SendCommands.cc @@ -344,7 +344,7 @@ static const vector stream_file_entries = { "BattleParamEntry_ep4_on.dat", "PlyLevelTbl.prs", }; -static FileContentsCache bb_stream_files_cache(3600 * 1000 * 1000); +static FileContentsCache bb_stream_files_cache(3600000000ULL); void send_stream_file_index_bb(shared_ptr c) {