Skip to content

Commit

Permalink
Add and remove spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
EdenGri committed Dec 21, 2022
1 parent 8ae91e4 commit 3e64c97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cfgmgr/intfmgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -456,11 +456,11 @@ std::string IntfMgr::setHostSubIntfMtu(const string &alias, const string &mtu, c
// followed by a new DEL notification that send by portmgrd
SWSS_LOG_WARN("Setting mtu to %s netdev failed with cmd:%s, rc:%d, error:%s", alias.c_str(), cmd_str.c_str(), ret, res.c_str());
}
else if(ret)
else if (ret)
{
throw runtime_error(cmd_str + " : " + res);
}
return subifMtu;
return subifMtu;
}

void IntfMgr::updateSubIntfAdminStatus(const string &alias, const string &admin)
Expand Down

0 comments on commit 3e64c97

Please sign in to comment.