From c7a8e0dff85bf44d0f7f02cdcc9b0ca0565f3ef0 Mon Sep 17 00:00:00 2001 From: dolanzhao Date: Tue, 6 Sep 2022 12:23:54 -0400 Subject: [PATCH] fix the clang-format issue --- clients/drcachesim/tracer/raw2trace_launcher.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/clients/drcachesim/tracer/raw2trace_launcher.cpp b/clients/drcachesim/tracer/raw2trace_launcher.cpp index 5bb937d344b..8acb14860f4 100644 --- a/clients/drcachesim/tracer/raw2trace_launcher.cpp +++ b/clients/drcachesim/tracer/raw2trace_launcher.cpp @@ -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());