fix packet vs file size check
[babeltrace.git] / formats / ctf-text / ctf-text.c
index 2e9509e71cf281672f11c1a2afcbbbbfd001d8f7..aabf6283295010ceac69bbd7a26301935afb7e4d 100644 (file)
 struct trace_descriptor *ctf_text_open_trace(const char *path, int flags);
 void ctf_text_close_trace(struct trace_descriptor *descriptor);
 
-static
-rw_dispatch read_dispatch_table[] = {
-       /* All unimplemented */
-};
-
 static
 rw_dispatch write_dispatch_table[] = {
        [ CTF_TYPE_INTEGER ] = ctf_text_integer_write,
@@ -66,6 +61,8 @@ struct trace_descriptor *ctf_text_open_trace(const char *path, int flags)
 
        switch (flags & O_ACCMODE) {
        case O_WRONLY:
+               if (!path)
+                       path = "/dev/stdout";
                fp = fopen(path, "w");
                if (!fp)
                        goto error;
This page took 0.02364 seconds and 4 git commands to generate.