summaryrefslogtreecommitdiffstats
path: root/hicn-light/src/hicn/core/connectionTable.c
diff options
context:
space:
mode:
Diffstat (limited to 'hicn-light/src/hicn/core/connectionTable.c')
-rw-r--r--hicn-light/src/hicn/core/connectionTable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hicn-light/src/hicn/core/connectionTable.c b/hicn-light/src/hicn/core/connectionTable.c
index 0a1301328..f8589c12b 100644
--- a/hicn-light/src/hicn/core/connectionTable.c
+++ b/hicn-light/src/hicn/core/connectionTable.c
@@ -206,7 +206,7 @@ const Connection *connectionTable_FindByAddressPair(ConnectionTable *table,
return (Connection *)parcHashCodeTable_Get(table->indexByAddressPair, pair);
}
-const Connection *connectionTable_FindById(ConnectionTable *table,
+const Connection *connectionTable_FindById(const ConnectionTable *table,
unsigned id) {
parcAssertNotNull(table, "Parameter table must be non-null");
return (Connection *)parcHashCodeTable_Get(table->storageTableById, &id);