add fflush in hypre_printf (#505)

This PR adds `fflush` in `hypre_printf`.
This commit is contained in:
Ruipeng Li 2021-10-25 16:04:52 -07:00 committed by GitHub
parent aadfd86de4
commit 612dcdb2eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,6 +140,8 @@ hypre_printf( const char *format, ...)
free_format(newformat);
va_end(ap);
fflush(stdout);
return ierr;
}