summaryrefslogtreecommitdiff
path: root/runtime/ti/agent.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/ti/agent.cc')
-rw-r--r--runtime/ti/agent.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/ti/agent.cc b/runtime/ti/agent.cc
index 20e297c991..3bf169ad40 100644
--- a/runtime/ti/agent.cc
+++ b/runtime/ti/agent.cc
@@ -100,7 +100,7 @@ Agent::LoadError Agent::DoDlOpen(/*out*/std::string* error_msg) {
if (onattach_ == nullptr) {
VLOG(agents) << "Unable to find 'Agent_OnAttach' symbol in " << this;
}
- onunload_= reinterpret_cast<AgentOnUnloadFunction>(FindSymbol(AGENT_ON_UNLOAD_FUNCTION_NAME));
+ onunload_ = reinterpret_cast<AgentOnUnloadFunction>(FindSymbol(AGENT_ON_UNLOAD_FUNCTION_NAME));
if (onunload_ == nullptr) {
VLOG(agents) << "Unable to find 'Agent_OnUnload' symbol in " << this;
}