libfreerdp-core: fix false undefined error

This commit is contained in:
Marc-André Moreau 2012-10-09 14:03:41 -04:00
parent f8013ff6ac
commit 2431733043
1 changed files with 2 additions and 1 deletions

View File

@ -452,7 +452,8 @@ static void update_send_synchronize(rdpContext* context)
static void update_send_desktop_resize(rdpContext* context)
{
if (context->peer)
context->peer->activated = false;
context->peer->activated = FALSE;
rdp_server_reactivate(context->rdp);
}