remove compiler warnings

This commit is contained in:
andreas 2021-11-05 17:11:58 +01:00
parent 647623d7ae
commit 7aaccac54b
1 changed files with 1 additions and 0 deletions

View File

@ -107,6 +107,7 @@ bool checkFilter(const char *buffer,int channelId,bool read){
if (!filter) return true; if (!filter) return true;
if (filter->canPass(buffer)) return true; if (filter->canPass(buffer)) return true;
logger.logDebug(GwLog::DEBUG,"%s filter for channel %d dropped %s",(read?"read":"write"),channelId,buffer); logger.logDebug(GwLog::DEBUG,"%s filter for channel %d dropped %s",(read?"read":"write"),channelId,buffer);
return false;
} }
bool serCanWrite=true; bool serCanWrite=true;