Guest User

Untitled

a guest
Jun 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. Index: test/test.c
  2. ===================================================================
  3. --- test/test.c (revision 2412)
  4. +++ test/test.c (working copy)
  5. @@ -147,6 +147,14 @@
  6. int build;
  7. char * version;
  8.  
  9. +/* win32 _IOLBF (line-buffering) is the same as _IOFBF (full-buffering).
  10. + * force it to unbuffered otherwise informative output is not easily parsed.
  11. + */
  12. +#if defined( _WIN32 ) || defined( __MINGW32__ )
  13. + setvbuf( stdout, NULL, _IONBF, 0 );
  14. + setvbuf( stderr, NULL, _IONBF, 0 );
  15. +#endif
  16. +
  17. audios = hb_list_init();
  18.  
  19. /* Parse command line */
Add Comment
Please, Sign In to add comment