fast-bookmark: tidy up while loop into one line
1 files changed, 1 insertions(+), 2 deletions(-) M fast-hg-bookmark.c
M fast-hg-bookmark.c +1 -2
@@ 41,8 41,7 @@ int cat_file(const char *pwd, const char white space */ putchar(c); - while ((c = fgetc(f)) != EOF && c != '\n') - putchar(c); + while ((c = fgetc(f)) != EOF && c != '\n') putchar(c); fclose(f);