From 5d451a0e10aa0be8ece068d1cd985f07332d281a Mon Sep 17 00:00:00 2001 From: Alpesh S Patel Date: Tue, 5 Oct 2021 13:53:49 -0700 Subject: [PATCH] fix the type for SAI_BUFFER_PROFILE_ATTR_BUFFER_SIZE Signed-off-by: Alpesh S Patel --- orchagent/pfcactionhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchagent/pfcactionhandler.cpp b/orchagent/pfcactionhandler.cpp index cf43f57d08..eede196751 100644 --- a/orchagent/pfcactionhandler.cpp +++ b/orchagent/pfcactionhandler.cpp @@ -708,7 +708,7 @@ void PfcWdZeroBufferHandler::ZeroBufferProfile::createZeroBufferProfile(bool ing attribs.push_back(attr); attr.id = SAI_BUFFER_PROFILE_ATTR_BUFFER_SIZE; - attr.value.u32 = 0; + attr.value.u64 = 0; attribs.push_back(attr); attr.id = SAI_BUFFER_PROFILE_ATTR_SHARED_DYNAMIC_TH;