Skip to content

Commit

Permalink
fix the clang-format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dolanzhao committed Sep 6, 2022
1 parent cadb5e3 commit c7a8e0d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions clients/drcachesim/tracer/raw2trace_launcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ _tmain(int argc, const TCHAR *targv[])
std::string dir_err = dir.initialize(op_indir.get_value(), op_outdir.get_value());
if (!dir_err.empty())
FATAL_ERROR("Directory parsing failed: %s", dir_err.c_str());
raw2trace_t raw2trace(
dir.modfile_bytes_, dir.in_files_, dir.out_files_, dir.out_archives_,
dir.encoding_file_, nullptr, op_verbose.get_value(), op_jobs.get_value(),
dir.get_syscall_pt_trace_dir(), op_alt_module_dir.get_value(),
op_chunk_instr_count.get_value());
raw2trace_t raw2trace(dir.modfile_bytes_, dir.in_files_, dir.out_files_,
dir.out_archives_, dir.encoding_file_, nullptr,
op_verbose.get_value(), op_jobs.get_value(),
dir.get_syscall_pt_trace_dir(), op_alt_module_dir.get_value(),
op_chunk_instr_count.get_value());
std::string error = raw2trace.do_conversion();
if (!error.empty())
FATAL_ERROR("Conversion failed: %s", error.c_str());
Expand Down

0 comments on commit c7a8e0d

Please sign in to comment.