Skip to content

Commit

Permalink
Addressed comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Venkata Narayana Raju Datla committed Jan 13, 2014
1 parent 283ca24 commit 653d007
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vnsw/agent/cmn/agent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ void Agent::InitDone() {

// Diag module needs PktModule
if (pkt_.get()) {
diag_table_ = std::auto_ptr<DiagTable>(new DiagTable(this));
diag_table_ = std::auto_ptr<DiagTable>(new DiagTable(this));
}

if (init_->create_vhost()) {
Expand Down
2 changes: 1 addition & 1 deletion src/vnsw/agent/cmn/agent.h
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ class Agent {
}

DiagTable *diagTable() {
return diag_table_.get();
return diag_table_.get();
}
void CreateLifetimeManager();
void ShutdownLifetimeManager();
Expand Down

0 comments on commit 653d007

Please sign in to comment.