Skip to content

Commit

Permalink
Merge pull request #1 from vincentbernat/patch-1
Browse files Browse the repository at this point in the history
Flush stdout after logging
  • Loading branch information
timakro authored Jun 30, 2022
2 parents c99ac1c + 408555a commit 91dc993
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions xssproxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ void vmsg(const char *format, ...)
va_start(args, format);
vfprintf(stdout, format, args);
va_end(args);
fflush(stdout);
}

void disable_screensaver()
Expand Down

0 comments on commit 91dc993

Please sign in to comment.