mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 11:32:48 -05:00
Formatting: remove spurious spaces in 'type * var'.
I think a lot of these were inserted by a prior run through GNU indent many years ago. I noticed in a more recent experiment that that tool doesn't always correctly distinguish which instances of 'id * id' are pointer variable declarations and which are multiplications, so it spaces some of the former as if they were the latter.
This commit is contained in:
@ -2341,7 +2341,7 @@ void term_provide_backend(Terminal *term, Backend *backend)
|
||||
* If only the top line has content, returns 0.
|
||||
* If no lines have content, return -1.
|
||||
*/
|
||||
static int find_last_nonempty_line(Terminal * term, tree234 * screen)
|
||||
static int find_last_nonempty_line(Terminal *term, tree234 *screen)
|
||||
{
|
||||
int i;
|
||||
for (i = count234(screen) - 1; i >= 0; i--) {
|
||||
|
Reference in New Issue
Block a user