1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-18 19:41:01 -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

10
sshcr.h
View File

@ -39,7 +39,7 @@
#define crFinishFreeV } sfree(s); return; } while (0)
#define crReturn(z) \
do {\
*crLine =__LINE__; return (z); case __LINE__:;\
*crLine = __LINE__; return (z); case __LINE__:;\
} while (0)
#define crReturnV \
do {\
@ -64,22 +64,22 @@
*/
#define crMaybeWaitUntil(c) \
do { \
*crLine =__LINE__; \
*crLine = __LINE__; \
case __LINE__: if (!(c)) return 0; \
} while (0)
#define crMaybeWaitUntilV(c) \
do { \
*crLine =__LINE__; \
*crLine = __LINE__; \
case __LINE__: if (!(c)) return; \
} while (0)
#define crWaitUntil(c) \
do { \
*crLine =__LINE__; return; \
*crLine = __LINE__; return; \
case __LINE__: if (!(c)) return 0; \
} while (0)
#define crWaitUntilV(c) \
do { \
*crLine =__LINE__; return; \
*crLine = __LINE__; return; \
case __LINE__: if (!(c)) return; \
} while (0)