From cb11b766823e15b82220aac3c50a092ea0c1b877 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 9 Apr 2021 12:20:02 -0500 Subject: [PATCH] Fix GCC/Clang warning --- src/RtspConnection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RtspConnection.c b/src/RtspConnection.c index 67ba446..4f9a134 100644 --- a/src/RtspConnection.c +++ b/src/RtspConnection.c @@ -12,7 +12,7 @@ static bool hasSessionId; static int rtspClientVersion; static char urlAddr[URLSAFESTRING_LEN]; static bool useEnet; -static const char* controlStreamId; +static char* controlStreamId; static SOCKET sock = INVALID_SOCKET; static ENetHost* client;