From 2a286fbf65cca093130b3e2f3c3871ed5ae0561b Mon Sep 17 00:00:00 2001 From: Zhu Qun-Ying Date: Fri, 24 Jul 2020 09:05:34 -0700 Subject: [PATCH] Fixed error msg typo in ciprdr_main.c --- channels/cliprdr/client/cliprdr_main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/channels/cliprdr/client/cliprdr_main.c b/channels/cliprdr/client/cliprdr_main.c index b5d119a20..188e029b8 100644 --- a/channels/cliprdr/client/cliprdr_main.c +++ b/channels/cliprdr/client/cliprdr_main.c @@ -511,7 +511,7 @@ static UINT cliprdr_order_recv(cliprdrPlugin* cliprdr, wStream* s) case CB_UNLOCK_CLIPDATA: if ((error = cliprdr_process_unlock_clipdata(cliprdr, s, dataLen, msgFlags))) - WLog_ERR(TAG, "cliprdr_process_lock_clipdata failed with error %" PRIu32 "!", + WLog_ERR(TAG, "cliprdr_process_unlock_clipdata failed with error %" PRIu32 "!", error); break; @@ -679,7 +679,7 @@ static UINT cliprdr_client_lock_clipboard_data(CliprdrClientContext* context, if (!s) { - WLog_ERR(TAG, "cliprdr_packet_new failed!"); + WLog_ERR(TAG, "cliprdr_packet_lock_clipdata_new failed!"); return ERROR_INTERNAL_ERROR; } @@ -703,7 +703,7 @@ cliprdr_client_unlock_clipboard_data(CliprdrClientContext* context, if (!s) { - WLog_ERR(TAG, "cliprdr_packet_new failed!"); + WLog_ERR(TAG, "cliprdr_packet_unlock_clipdata_new failed!"); return ERROR_INTERNAL_ERROR; } @@ -802,7 +802,7 @@ cliprdr_client_file_contents_response(CliprdrClientContext* context, if (!s) { - WLog_ERR(TAG, "cliprdr_packet_new failed!"); + WLog_ERR(TAG, "cliprdr_packet_file_contents_response_new failed!"); return ERROR_INTERNAL_ERROR; }