diff --git a/libfreerdp/core/gateway/rdg.c b/libfreerdp/core/gateway/rdg.c index b2a8e9484..1aef67615 100644 --- a/libfreerdp/core/gateway/rdg.c +++ b/libfreerdp/core/gateway/rdg.c @@ -311,7 +311,8 @@ static BOOL rdg_read_http_unicode_string(wStream* s, const WCHAR** string, UINT1 /* Read length of the string */ if (!Stream_CheckAndLogRequiredLength(TAG, s, 4)) { - WLog_ERR(TAG, "[%s]: Could not read stream length, only have % " PRIuz " bytes", rem); + WLog_ERR(TAG, "[%s]: Could not read stream length, only have % " PRIuz " bytes", + __FUNCTION__, rem); return FALSE; } Stream_Read_UINT16(s, strLenBytes); @@ -324,7 +325,7 @@ static BOOL rdg_read_http_unicode_string(wStream* s, const WCHAR** string, UINT1 { WLog_ERR(TAG, "[%s]: Could not read stream data, only have % " PRIuz " bytes, expected %" PRIu16, - rem - 4, strLenBytes); + __FUNCTION__, rem - 4, strLenBytes); return FALSE; }