Fix: remove misplaced const

This commit is contained in:
Alex P 2025-09-16 15:52:53 +03:00
parent 26e71806cb
commit a5fb3bf30c
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@ static int max_packet_size = 1500; // Maximum Opus packet size
// Error handling and retry configuration
static int sleep_microseconds = 1000; // Base sleep time for retries
static const int max_attempts_global = 5; // Maximum retry attempts
static const int max_backoff_us_global = 500000; // Maximum backoff time
static int max_attempts_global = 5; // Maximum retry attempts
static int max_backoff_us_global = 500000; // Maximum backoff time
// Performance optimization flags
static const int optimized_buffer_size = 1; // Use optimized buffer sizing