summaryrefslogtreecommitdiff
path: root/oid-array.c
diff options
context:
space:
mode:
Diffstat (limited to 'oid-array.c')
-rw-r--r--oid-array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/oid-array.c b/oid-array.c
index a19235afbf..73ba76e9e9 100644
--- a/oid-array.c
+++ b/oid-array.c
@@ -22,9 +22,9 @@ void oid_array_sort(struct oid_array *array)
array->sorted = 1;
}
-static const struct object_id *oid_access(size_t index, void *table)
+static const struct object_id *oid_access(size_t index, const void *table)
{
- struct object_id *array = table;
+ const struct object_id *array = table;
return &array[index];
}