Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion orchagent/aclorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ bool AclRule::isActionSupported(sai_acl_entry_attr_t action) const
const auto* pTable = m_pAclOrch->getTableByOid(m_tableOid);
if (pTable == nullptr)
{
SWSS_LOG_THROW("ACL table does not exist for oid %lu", m_tableOid);
SWSS_LOG_THROW("ACL table does not exist for oid %" PRIu64, m_tableOid);
}
return m_pAclOrch->isAclActionSupported(pTable->stage, action_type);
}
Expand Down
2 changes: 1 addition & 1 deletion orchagent/qosorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ sai_object_id_t Dot1pToTcMapHandler::addQosItem(const vector<sai_attribute_t> &a
SWSS_LOG_ERROR("Failed to create dot1p_to_tc map. status: %s", sai_serialize_status(sai_status).c_str());
return SAI_NULL_OBJECT_ID;
}
SWSS_LOG_DEBUG("created QosMap object: 0x%lx", object_id);
SWSS_LOG_DEBUG("created QosMap object: 0x%" PRIx64, object_id);
return object_id;
}

Expand Down