Cleanup babeltrace-log
[babeltrace.git] / converter / babeltrace.c
index 2e731712a38b0231d599daf96506a9c9863a8db7..64392d0c5aee66900cdca53db0dc190ddfcea6fa 100644 (file)
@@ -77,8 +77,8 @@ static void usage(FILE *fp)
        fprintf(fp, "  INPUT                          Input trace path\n");
        fprintf(fp, "  OUTPUT                         Output trace path (default: stdout)\n");
        fprintf(fp, "\n");
-       fprintf(fp, "  -i, --input-format FORMAT      Input trace format\n");
-       fprintf(fp, "  -o, --output-format FORMAT     Output trace format\n");
+       fprintf(fp, "  -i, --input-format FORMAT      Input trace format (default: ctf)\n");
+       fprintf(fp, "  -o, --output-format FORMAT     Output trace format (default: text)\n");
        fprintf(fp, "\n");
        fprintf(fp, "  -h, --help                     This help message\n");
        fprintf(fp, "  -l, --list                     List available formats\n");
@@ -196,7 +196,7 @@ int main(int argc, char **argv)
                goto error_td_read;
        }
 
-       td_write = fmt_write->open_trace(opt_output_path, O_WRONLY);
+       td_write = fmt_write->open_trace(opt_output_path, O_RDWR);
        if (!td_write) {
                fprintf(stdout, "Error opening trace \"%s\" for writing.\n\n",
                        opt_output_path ? : "<none>");
This page took 0.023216 seconds and 4 git commands to generate.