1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 11:32:48 -05:00

Formatting: fix a few mis-spaced assignments.

I spotted one of those in the raw backend the other day, and now I've
got round to finding a bunch more and fixing them.
This commit is contained in:
Simon Tatham
2022-12-28 15:28:36 +00:00
parent 9f2e1e6e03
commit 6fcc7ed728
6 changed files with 16 additions and 16 deletions

View File

@ -1742,7 +1742,7 @@ static void share_got_pkt_from_downstream(struct ssh_sharing_connstate *cs,
#define crGetChar(c) do \
{ \
while (len == 0) { \
*crLine =__LINE__; return; case __LINE__:; \
*crLine = __LINE__; return; case __LINE__:; \
} \
len--; \
(c) = (unsigned char)*data++; \