From 4da76e02e8ddad312d329d602ce85f754e01035b Mon Sep 17 00:00:00 2001 From: ahodgkinson Date: Tue, 20 Jun 2006 15:36:32 +0000 Subject: [PATCH] Added call to fflush in f_printf(). git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@589 0109f412-320b-0410-ab79-c3e0c5ffbbe6 --- ftk/src/ftkprntf.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ftk/src/ftkprntf.cpp b/ftk/src/ftkprntf.cpp index e71783b..2a1fc6a 100644 --- a/ftk/src/ftkprntf.cpp +++ b/ftk/src/ftkprntf.cpp @@ -783,7 +783,8 @@ FLMINT FLMAPI f_printf( f_va_end(args); #ifndef FLM_RING_ZERO_NLM - printf( szTmpBuf); + fprintf( stdout, szTmpBuf); + fflush( stdout); #endif return( iLen);