diff options
-rw-r--r-- | jawol.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -159,6 +159,8 @@ int main(int argc, char **argv) return 1; } if ( dolisten ) { + // Make stdout line buffered, in case this gets piped through something + setvbuf( stdout, NULL, _IOLBF, 500 ); return wolisten( dolisten > 1 ); } if ( gotip && gotif ) { |