From 1be4521664cd28b2530ddb5489ff167337a249aa Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Fri, 30 Jan 2026 12:51:25 +0200 Subject: [PATCH] Issue #321: Fixed compilation error on FreeBSD --- src/ustreamer/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ustreamer/stream.c b/src/ustreamer/stream.c index 2112e63..9ae94e4 100644 --- a/src/ustreamer/stream.c +++ b/src/ustreamer/stream.c @@ -770,7 +770,7 @@ static void _stream_check_suicide(us_stream_s *stream) { return; } - const atomic_ullong *last_req_ts = &stream->run->http->last_req_ts; + atomic_ullong *last_req_ts = &stream->run->http->last_req_ts; const ldf now_ts = us_get_now_monotonic(); if (_stream_has_any_clients_cached(stream)) {