From a0305aaef00c8d548bf404833010edabe1b92209 Mon Sep 17 00:00:00 2001 From: compudj Date: Fri, 2 Mar 2007 22:51:09 +0000 Subject: [PATCH] Jerry fix git-svn-id: http://ltt.polymtl.ca/svn@2406 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/lttv/modules/text/textDump.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ltt/branches/poly/lttv/modules/text/textDump.c b/ltt/branches/poly/lttv/modules/text/textDump.c index ea689e2e..ba802d22 100644 --- a/ltt/branches/poly/lttv/modules/text/textDump.c +++ b/ltt/branches/poly/lttv/modules/text/textDump.c @@ -336,13 +336,14 @@ static int write_event_content(void *hook_data, void *call_data) return FALSE; lttv_event_to_string(e, a_string, TRUE, a_field_names, tfs); - g_string_append_printf(a_string,"\n"); if(a_state) { g_string_append_printf(a_string, " %s ", g_quark_to_string(process->state->s)); } + g_string_append_printf(a_string,"\n"); + fputs(a_string->str, a_file); return FALSE; } -- 2.34.1