Skip to content

Commit

Permalink
Update error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nexarian committed Mar 2, 2021
1 parent 60732e0 commit ef89d7e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions module/rdpClientCon.c
Original file line number Diff line number Diff line change
Expand Up @@ -2455,9 +2455,10 @@ rdpDeferredUpdateCallback(OsTimerPtr timer, CARD32 now, pointer arg)
return 0;
}
if (clientCon->shmemstatus == UNINITIALIZED || clientCon->shmemstatus == RESIZING) {
LLOGLN(10, ("rdpDeferredUpdateCallback: reschedule rect_id %d "
"rect_id_ack %d",
clientCon->rect_id, clientCon->rect_id_ack));
LLOGLN(10, ("rdpDeferredUpdateCallback: clientCon->shmemstatus "
"is not valid for capture operations: %d"
" reschedule rect_id %d rect_id_ack %d",
clientCon->shmemstatus, clientCon->rect_id, clientCon->rect_id_ack));
return 0;
}
if ((clientCon->rect_id > clientCon->rect_id_ack) ||
Expand Down

0 comments on commit ef89d7e

Please sign in to comment.