Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ryancdotorg committed Oct 17, 2015
1 parent 0eef329 commit c077332
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion brainflayer.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,8 +470,9 @@ int main(int argc, char **argv) {
bail(1, "failed to open '%s' for writing: %s\n", oopt, strerror(errno));
}

/* use line buffered output */
/* line buffer output */
setvbuf(ofile, NULL, _IOLBF, 0);
/* don't buffer stderr */
setvbuf(stderr, NULL, _IONBF, 0);

brainflayer_init_globals();
Expand Down

0 comments on commit c077332

Please sign in to comment.