look: remove extra semicolon

The both macro SKIP_PAST_NEWLINE and location where macro is used will
not need semicolon at the end of line.

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2012-07-14 23:50:15 +02:00 committed by Karel Zak
parent 4e7e68ca6f
commit fad05c68e6
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ look(char *front, char *back)
* more trouble than it's worth.
*/
#define SKIP_PAST_NEWLINE(p, back) \
while (p < back && *p++ != '\n');
while (p < back && *p++ != '\n')
char *
binary_search(char *front, char *back)