summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Cmarada <michal.cmarada@pantheon.tech>2018-06-28 09:39:52 +0200
committerMichal Cmarada <michal.cmarada@pantheon.tech>2018-06-28 09:39:52 +0200
commit48e539a6fc5c0cb9a648081afcf13c1916086e7d (patch)
tree2156d700f462c9b5f902573ef1803cefc15a6192
parente6dbef812c22ca55133d88c0f07f0e440bf325a3 (diff)
fix Cast one of the operands to a long bug
both of operands are int type which can cause loss of data. This changes the types of operands to long Change-Id: Ie162d52b1f853c0d83d51c8871af42a597b93386 Signed-off-by: Michal Cmarada <michal.cmarada@pantheon.tech>
-rw-r--r--srv6/srv6-impl/src/main/java/io/fd/hc2vpp/srv6/read/policy/request/PolicyReadRequest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/srv6/srv6-impl/src/main/java/io/fd/hc2vpp/srv6/read/policy/request/PolicyReadRequest.java b/srv6/srv6-impl/src/main/java/io/fd/hc2vpp/srv6/read/policy/request/PolicyReadRequest.java
index 8117d4d91..6952c1538 100644
--- a/srv6/srv6-impl/src/main/java/io/fd/hc2vpp/srv6/read/policy/request/PolicyReadRequest.java
+++ b/srv6/srv6-impl/src/main/java/io/fd/hc2vpp/srv6/read/policy/request/PolicyReadRequest.java
@@ -251,9 +251,9 @@ public class PolicyReadRequest extends JVppRequest
}));
}
- private Segment parseSrv6Sid(final int i, final Srv6Sid srv6Sid) {
+ private Segment parseSrv6Sid(final long i, final Srv6Sid srv6Sid) {
// shifting index by 1 so it matches original indexing
- long index = i + 1;
+ long index = i + 1L;
SegmentBuilder builder = new SegmentBuilder().setKey(new SegmentKey(index)).setState(
new org.opendaylight.yang.gen.v1.http.cisco.com.ns.yang.oc.srte.policy.rev170918.segment.properties.StateBuilder()
.setIndex(index)