diff --git a/channels/disp/client/disp_main.c b/channels/disp/client/disp_main.c index 17ab47bce..4822de7b2 100644 --- a/channels/disp/client/disp_main.c +++ b/channels/disp/client/disp_main.c @@ -101,7 +101,7 @@ int disp_send_display_control_monitor_layout_pdu(DISP_CHANNEL_CALLBACK* callback Stream_Write_UINT32(s, NumMonitors); /* NumMonitors (4 bytes) */ - //WLog_ERR(TAG, "NumMonitors: %d\n", NumMonitors); + //WLog_ERR(TAG, "NumMonitors: %d", NumMonitors); for (index = 0; index < NumMonitors; index++) { @@ -134,14 +134,14 @@ int disp_send_display_control_monitor_layout_pdu(DISP_CHANNEL_CALLBACK* callback Stream_Write_UINT32(s, Monitors[index].DeviceScaleFactor); /* DeviceScaleFactor (4 bytes) */ #if 0 - WLog_DBG(TAG, "\t: Flags: 0x%04X\n", Monitors[index].Flags); - WLog_DBG(TAG, "\t: Left: %d\n", Monitors[index].Left); - WLog_DBG(TAG, "\t: Top: %d\n", Monitors[index].Top); - WLog_DBG(TAG, "\t: Width: %d\n", Monitors[index].Width); - WLog_DBG(TAG, "\t: Height: %d\n", Monitors[index].Height); - WLog_DBG(TAG, "\t: PhysicalWidth: %d\n", Monitors[index].PhysicalWidth); - WLog_DBG(TAG, "\t: PhysicalHeight: %d\n", Monitors[index].PhysicalHeight); - WLog_DBG(TAG, "\t: Orientation: %d\n", Monitors[index].Orientation); + WLog_DBG(TAG, "\t: Flags: 0x%04X", Monitors[index].Flags); + WLog_DBG(TAG, "\t: Left: %d", Monitors[index].Left); + WLog_DBG(TAG, "\t: Top: %d", Monitors[index].Top); + WLog_DBG(TAG, "\t: Width: %d", Monitors[index].Width); + WLog_DBG(TAG, "\t: Height: %d", Monitors[index].Height); + WLog_DBG(TAG, "\t: PhysicalWidth: %d", Monitors[index].PhysicalWidth); + WLog_DBG(TAG, "\t: PhysicalHeight: %d", Monitors[index].PhysicalHeight); + WLog_DBG(TAG, "\t: Orientation: %d", Monitors[index].Orientation); #endif } @@ -166,7 +166,7 @@ int disp_recv_display_control_caps_pdu(DISP_CHANNEL_CALLBACK* callback, wStream* Stream_Read_UINT32(s, disp->MaxNumMonitors); /* MaxNumMonitors (4 bytes) */ Stream_Read_UINT32(s, disp->MaxMonitorAreaFactorA); /* MaxMonitorAreaFactorA (4 bytes) */ Stream_Read_UINT32(s, disp->MaxMonitorAreaFactorB); /* MaxMonitorAreaFactorB (4 bytes) */ - //WLog_ERR(TAG, "DisplayControlCapsPdu: MaxNumMonitors: %d MaxMonitorWidth: %d MaxMonitorHeight: %d\n", + //WLog_ERR(TAG, "DisplayControlCapsPdu: MaxNumMonitors: %d MaxMonitorWidth: %d MaxMonitorHeight: %d", // disp->MaxNumMonitors, disp->MaxMonitorWidth, disp->MaxMonitorHeight); return 0; @@ -183,7 +183,7 @@ int disp_recv_pdu(DISP_CHANNEL_CALLBACK* callback, wStream* s) Stream_Read_UINT32(s, type); /* Type (4 bytes) */ Stream_Read_UINT32(s, length); /* Length (4 bytes) */ - //WLog_ERR(TAG, "Type: %d Length: %d\n", type, length); + //WLog_ERR(TAG, "Type: %d Length: %d", type, length); switch (type) {