Skip to content

Commit

Permalink
server : fix build (#2718)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Jan 13, 2025
1 parent 35d0e02 commit e940fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/server/server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ std::string generate_temp_filename(const std::string &prefix, const std::string
auto now_time_t = std::chrono::system_clock::to_time_t(now);

static std::mt19937 rng{std::random_device{}()};
std::uniform_int_distribution<long long> dist(0, 1'000'000'000);
std::uniform_int_distribution<long long> dist(0, 1e9);

std::stringstream ss;
ss << prefix
Expand Down

0 comments on commit e940fbf

Please sign in to comment.