aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-light
diff options
context:
space:
mode:
authorMauro Sardara <msardara@cisco.com>2022-09-12 18:36:10 +0200
committerMauro Sardara <msardara@cisco.com>2022-09-12 18:36:10 +0200
commita4c11477fee6f77440dc5353595f3c1390f765b5 (patch)
treea9364c060b04e707d458487bc98fc9b800542b9c /hicn-light
parent6ee6b65ef03f8a479cccb2ae04e6b156f309f045 (diff)
fix(interest_manifest.h): set correct type to pos variable when using it in interest_manifest_foreach_suffix
Ref: HICN-780 Signed-off-by: Mauro Sardara <msardara@cisco.com> Change-Id: I6025c3e87d4d8cb6a1e5e1f68e856214f8aa81ed
Diffstat (limited to 'hicn-light')
-rw-r--r--hicn-light/src/hicn/core/forwarder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hicn-light/src/hicn/core/forwarder.c b/hicn-light/src/hicn/core/forwarder.c
index d148f845d..60493a9c5 100644
--- a/hicn-light/src/hicn/core/forwarder.c
+++ b/hicn-light/src/hicn/core/forwarder.c
@@ -979,7 +979,7 @@ static ssize_t forwarder_process_aggregated_interest(
// then just iterate the interest manifest and update the suffix in the name
// struct
hicn_name_suffix_t *suffix;
- int pos;
+ unsigned long pos;
interest_manifest_foreach_suffix(int_manifest_header, suffix, pos) {
// Update name
hicn_name_set_suffix(&name_copy, *suffix);