Skip to content

Commit

Permalink
* Pass forwarding class as int16_t as specified in sandesh file
Browse files Browse the repository at this point in the history
Change-Id: Ifbf462a1f39390847ed3999612498d12b991b70a
Closes-bug:#1608392
  • Loading branch information
naveen-n committed Aug 2, 2016
1 parent fea512c commit dea1c7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vnsw/agent/vrouter/ksync/forwarding_class_ksync.cc
Expand Up @@ -92,7 +92,7 @@ int ForwardingClassKSyncEntry::Encode(sandesh_op::type op, char *buf, int buf_le
encoder.set_fmr_rid(0);

std::vector<int16_t> id_list;
id_list.push_back((int8_t)id_);
id_list.push_back((int16_t)id_);
encoder.set_fmr_id(id_list);

std::vector<int8_t> dscp_list;
Expand Down

0 comments on commit dea1c7e

Please sign in to comment.