Fix: babeltrace --fields all overrides --no-delta
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sat, 23 Mar 2013 16:18:59 +0000 (12:18 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sat, 23 Mar 2013 16:18:59 +0000 (12:18 -0400)
Fixes #463

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
formats/ctf-text/ctf-text.c

index b87718b58ddecabeaa66f7f6de0cfc3bc3701404..0859378e01249e473292e1122577065efe990168 100644 (file)
@@ -304,7 +304,7 @@ int ctf_text_write_event(struct bt_stream_pos *ppos, struct ctf_stream_definitio
                else
                        fprintf(pos->fp, " ");
        }
-       if ((opt_delta_field || opt_all_fields) && stream->has_timestamp) {
+       if (opt_delta_field && stream->has_timestamp) {
                uint64_t delta, delta_sec, delta_nsec;
 
                set_field_names_print(pos, ITEM_HEADER);
This page took 0.024353 seconds and 4 git commands to generate.