Skip to content

Commit

Permalink
More whitespace fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nexarian committed Dec 26, 2023
1 parent b23201b commit 4708009
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions xrdp/xrdp_mm.c
Original file line number Diff line number Diff line change
Expand Up @@ -3524,8 +3524,9 @@ xrdp_mm_frame_ack(struct xrdp_mm *self, int frame_id)
return 1;
}
encoder = self->encoder;
LOG_DEVEL(LOG_LEVEL_DEBUG, "xrdp_mm_frame_ack: incoming %d, client %d, server %d",
frame_id, encoder->frame_id_client, encoder->frame_id_server);
LOG_DEVEL(LOG_LEVEL_DEBUG, "xrdp_mm_frame_ack: "
"incoming %d, client %d, server %d", frame_id,
encoder->frame_id_client, encoder->frame_id_server);
if ((frame_id < 0) || (frame_id > encoder->frame_id_server))
{
/* if frame_id is negative or bigger then what server last sent
Expand All @@ -3543,6 +3544,7 @@ xrdp_mm_frame_ack(struct xrdp_mm *self, int frame_id)
return 0;
}

/*****************************************************************************/
static int
xrdp_mm_can_resize(struct xrdp_mm *self)
{
Expand Down

0 comments on commit 4708009

Please sign in to comment.