X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttv%2Fmodules%2Ftext%2FformattedDump.c;h=8fc2fbfd24cc3443bd42f2739705e0760e33c48b;hb=ed7dd953f420ac84bd2b5d7bfe18d7d97998d02d;hp=bdadc938d422379f737c5dd5ea88338bebd88c5b;hpb=8f07d3825e6bdea5d5b84daa26f500f87b03936b;p=lttv.git diff --git a/lttv/modules/text/formattedDump.c b/lttv/modules/text/formattedDump.c index bdadc938..8fc2fbfd 100644 --- a/lttv/modules/text/formattedDump.c +++ b/lttv/modules/text/formattedDump.c @@ -52,8 +52,8 @@ static gboolean a_state; static gboolean a_text; static gboolean a_strace; -static char *a_file_name = NULL; -static char *a_format = NULL; +static char *a_file_name; +static char *a_format; static LttvHooks *before_traceset; static LttvHooks *event_hook; @@ -73,9 +73,9 @@ static gboolean open_output_file(void *hook_data, void *call_data) { g_info("Open the output file"); if (a_file_name == NULL) { - a_file = stdout; + a_file = stdout; } else { - a_file = fopen(a_file_name, "w"); + a_file = fopen(a_file_name, "w"); } if (a_file == NULL) { g_error("cannot open file %s", a_file_name);