Fix: add missing error return when create_event_definitions fails
[babeltrace.git] / converter / babeltrace-log.c
index 214871192b2e3034d90a16c5b99c0d8a1babea55..563a90f57f1df018d5f75cd18e70a633aea8811b 100644 (file)
@@ -191,6 +191,11 @@ void write_event_header(struct ctf_stream_pos *pos, char *line,
                        }
                        *tlen = len + line - *tline;
                        *ts = (uint64_t) sec * USEC_PER_SEC + (uint64_t) usec;
+                       /*
+                        * Default CTF clock has 1GHz frequency. Convert
+                        * from usec to nsec.
+                        */
+                       *ts *= 1000;
                }
        }
        /* timestamp */
@@ -247,7 +252,7 @@ void trace_text(FILE *input, int output)
        int ret;
 
        memset(&pos, 0, sizeof(pos));
-       ret = ctf_init_pos(&pos, output, O_RDWR);
+       ret = ctf_init_pos(&pos, NULL, output, O_RDWR);
        if (ret) {
                fprintf(stderr, "Error in ctf_init_pos\n");
                return;
This page took 0.023629 seconds and 4 git commands to generate.