Commit fefcb9b4 authored by massiot's avatar massiot

* dvblast.c: When using -x, set stdout in line-buffered mode.


git-svn-id: svn://svn.videolan.org/dvblast/trunk@172 55d3f8b6-4a41-4d2d-a900-313d1436a5b8
parent ff90fc7e
......@@ -729,6 +729,8 @@ int main( int i_argc, char **pp_argv )
i_print_type = PRINT_XML;
else
msg_Warn( NULL, "unrecognized print type %s", optarg );
/* Make stdout line-buffered */
setvbuf(stdout, NULL, _IOLBF, 0);
break;
case 'Q':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment