Skip to content

Commit

Permalink
Merge pull request FreeRDP#1342 from hardeepmonty/refactor/fastpath_v…
Browse files Browse the repository at this point in the history
…ariable_association

fixed error on compilation WITH_DEBUG_RDP ON that was raising due to wrong variable in debug statement.
  • Loading branch information
bmiklautz committed Jul 8, 2013
2 parents ef49901 + f8fa2f9 commit 7572be0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libfreerdp/core/fastpath.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ static int fastpath_recv_update(rdpFastPath* fastpath, BYTE updateCode, UINT32 s

#ifdef WITH_DEBUG_RDP
DEBUG_RDP("recv Fast-Path %s Update (0x%X), length:%d",
updateCode < ARRAYSIZE(FASTPATH_UPDATETYPE_STRINGS) ? FASTPATH_UPDATETYPE_STRINGS[updateCode] : "???", updateCode, capacity);
updateCode < ARRAYSIZE(FASTPATH_UPDATETYPE_STRINGS) ? FASTPATH_UPDATETYPE_STRINGS[updateCode] : "???", updateCode, size);
#endif

switch (updateCode)
Expand Down

0 comments on commit 7572be0

Please sign in to comment.