Use stdout FILE * rather than /dev/stdout for default output
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sat, 7 May 2011 14:50:03 +0000 (10:50 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sat, 7 May 2011 14:50:03 +0000 (10:50 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
formats/ctf-text/ctf-text.c

index aabf6283295010ceac69bbd7a26301935afb7e4d..17b7bc232f290031e350ad6b8683b907f7d4c75c 100644 (file)
@@ -62,8 +62,9 @@ struct trace_descriptor *ctf_text_open_trace(const char *path, int flags)
        switch (flags & O_ACCMODE) {
        case O_WRONLY:
                if (!path)
        switch (flags & O_ACCMODE) {
        case O_WRONLY:
                if (!path)
-                       path = "/dev/stdout";
-               fp = fopen(path, "w");
+                       fp = stdout;
+               else
+                       fp = fopen(path, "w");
                if (!fp)
                        goto error;
                pos->fp = fp;
                if (!fp)
                        goto error;
                pos->fp = fp;
This page took 0.024468 seconds and 4 git commands to generate.