mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
[proxy,modules] eliminate unused variables
This commit is contained in:
@@ -440,6 +440,8 @@ static BOOL rdstls_cmp_str(wLog* log, const char* field, const char* serverStr,
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
WINPR_ASSERT(serverStr);
|
||||
WINPR_ASSERT(clientStr);
|
||||
if (strcmp(serverStr, clientStr) != 0)
|
||||
{
|
||||
WLog_Print(log, WLOG_ERROR, "%s verification failed", field);
|
||||
|
||||
@@ -247,7 +247,7 @@ static BOOL demo_mouse_event(proxyPlugin* plugin, proxyData* pdata, void* param)
|
||||
WINPR_ASSERT(pdata);
|
||||
WINPR_ASSERT(event_data);
|
||||
|
||||
WLog_INFO(TAG, "called");
|
||||
WLog_INFO(TAG, "called %p", event_data);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -259,7 +259,7 @@ static BOOL demo_mouse_ex_event(proxyPlugin* plugin, proxyData* pdata, void* par
|
||||
WINPR_ASSERT(pdata);
|
||||
WINPR_ASSERT(event_data);
|
||||
|
||||
WLog_INFO(TAG, "called");
|
||||
WLog_INFO(TAG, "called %p", event_data);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -309,7 +309,7 @@ static BOOL demo_server_fetch_target_addr(proxyPlugin* plugin, proxyData* pdata,
|
||||
WINPR_ASSERT(pdata);
|
||||
WINPR_ASSERT(event_data);
|
||||
|
||||
WLog_INFO(TAG, "called");
|
||||
WLog_INFO(TAG, "called %p", event_data);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -333,7 +333,7 @@ static BOOL demo_dyn_channel_intercept_list(proxyPlugin* plugin, proxyData* pdat
|
||||
WINPR_ASSERT(pdata);
|
||||
WINPR_ASSERT(data);
|
||||
|
||||
WLog_INFO(TAG, "%s", __func__);
|
||||
WLog_INFO(TAG, "%s: %p", __func__, data);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -345,7 +345,7 @@ static BOOL demo_static_channel_intercept_list(proxyPlugin* plugin, proxyData* p
|
||||
WINPR_ASSERT(pdata);
|
||||
WINPR_ASSERT(data);
|
||||
|
||||
WLog_INFO(TAG, "%s", __func__);
|
||||
WLog_INFO(TAG, "%s: %p", __func__, data);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -357,7 +357,7 @@ static BOOL demo_dyn_channel_intercept(proxyPlugin* plugin, proxyData* pdata, vo
|
||||
WINPR_ASSERT(pdata);
|
||||
WINPR_ASSERT(data);
|
||||
|
||||
WLog_INFO(TAG, "%s", __func__);
|
||||
WLog_INFO(TAG, "%s: %p", __func__, data);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user