citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 452662ef8340312aff445cade9d00f66ca75dea1
parent 35414060878dfb57cc3bfb39c01df4c098803169
Author: Kyle Milz <kyle@0x30.net>
Date:   Sun,  8 Jan 2017 05:19:12 -0700

inst: fix compile

Diffstat:
Minst_frontend.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inst_frontend.cc b/inst_frontend.cc @@ -80,7 +80,7 @@ InstFrontend::InstFrontend(int argc, char *argv[], bool is_citrun_inst) : #ifdef _WIN32 m_lib_path.append("libcitrun.lib"); #else - m_lib_path_append("libcitrun.a"); + m_lib_path.append("libcitrun.a"); #endif // _WIN32 m_log << "CITRUN_COMPILERS = '" << m_compilers_path << "'" << std::endl;