X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=src%2Fplugins%2Fctf%2Ffs-src%2Ffs.cpp;h=d26bbdfbfb1d6ed1ab45c88eb9174094f466e70a;hp=5cdabcadf798e2028cbaf8499ce801c86f68b639;hb=76edbcf1a675fe2d7d058c1b3ae1bd6fbe073e1c;hpb=5cb27175157f132f8204c7b9ad98f383a1023f66 diff --git a/src/plugins/ctf/fs-src/fs.cpp b/src/plugins/ctf/fs-src/fs.cpp index 5cdabcad..d26bbdfb 100644 --- a/src/plugins/ctf/fs-src/fs.cpp +++ b/src/plugins/ctf/fs-src/fs.cpp @@ -703,7 +703,7 @@ static int add_ds_file_to_ds_file_group(struct ctf_fs_trace *ctf_fs_trace, const * Create a temporary ds_file to read some properties about the data * stream file. */ - ds_file = ctf_fs_ds_file_create(ctf_fs_trace, NULL, NULL, path, log_level); + ds_file = ctf_fs_ds_file_create(ctf_fs_trace, NULL, path, log_level); if (!ds_file) { goto error; } @@ -1379,7 +1379,7 @@ static int decode_clock_snapshot_after_event(struct ctf_fs_trace *ctf_fs_trace, BT_ASSERT(index_entry); BT_ASSERT(index_entry->path); - ds_file = ctf_fs_ds_file_create(ctf_fs_trace, NULL, NULL, index_entry->path, log_level); + ds_file = ctf_fs_ds_file_create(ctf_fs_trace, NULL, index_entry->path, log_level); if (!ds_file) { BT_COMP_LOGE_APPEND_CAUSE(self_comp, "Failed to create a ctf_fs_ds_file"); ret = -1;