mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-23 12:42:02 +00:00
fix windows compiler warnings
This commit is contained in:
@@ -2301,10 +2301,10 @@ SWITCH_DECLARE(switch_core_session_t *) switch_core_session_request_uuid(switch_
|
||||
session->id = session_manager.session_id++;
|
||||
session_manager.session_count++;
|
||||
|
||||
if (session_manager.session_count > runtime.sessions_peak) {
|
||||
if (session_manager.session_count > (uint32_t)runtime.sessions_peak) {
|
||||
runtime.sessions_peak = session_manager.session_count;
|
||||
}
|
||||
if (session_manager.session_count > runtime.sessions_peak_fivemin) {
|
||||
if (session_manager.session_count > (uint32_t)runtime.sessions_peak_fivemin) {
|
||||
runtime.sessions_peak_fivemin = session_manager.session_count;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user