Skip to content

Commit

Permalink
8324 more: misleading-indentation
Browse files Browse the repository at this point in the history
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Alexander Pyhalov <alp@rsu.ru>
Approved by: Gordon Ross <gwr@nexenta.com>
  • Loading branch information
tsoome authored and gwr committed Jun 7, 2017
1 parent 0dbcca9 commit f535223
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions usr/src/cmd/more/more.c
Expand Up @@ -1089,8 +1089,8 @@ command(char *filename, register FILE *f)
done++;
goto endsw;
}
Currline++;
nlines--;
Currline++;
nlines--;
}
ret (dlines);
case '\n':
Expand Down Expand Up @@ -1470,8 +1470,8 @@ skiplns(register off_t n, register FILE *f)
while ((c = Getc (f)) != '\n')
if (c == EOF)
return;
n--;
Currline++;
n--;
Currline++;
}
}

Expand Down

0 comments on commit f535223

Please sign in to comment.