mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-06 22:12:47 -05:00
Formatting: normalise to put a space after condition keywords.
'if (thing)' is the local style here, not 'if(thing)'. Similarly with 'for' and 'while'.
This commit is contained in:
@ -149,7 +149,7 @@ static char *plink_get_ttymode(Seat *seat, const char *mode)
|
||||
do { \
|
||||
if (strcmp(mode, ourname) == 0) \
|
||||
return get_ttychar(&orig_termios, uxname); \
|
||||
} while(0)
|
||||
} while (0)
|
||||
#define GET_BOOL(ourname, uxname, uxmemb, transform) \
|
||||
do { \
|
||||
if (strcmp(mode, ourname) == 0) { \
|
||||
|
Reference in New Issue
Block a user