The NEEDSWORK comment about const correctness is no longer needed.
The hashmap API mandates that cmpfn_data is const, and casting to
opt (non-const) is the only reasonable approach. No functional change
is required, and this commit clarifies the code for future readers.
Signed-off-by: Okhuomon Ajayi <redacted>
---
patch-ids.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/patch-ids.c b/patch-ids.c
index b6b808332f..24309913b9 100644
--- a/patch-ids.c
+++ b/patch-ids.c
@@ -42,7 +42,7 @@ static int patch_id_neq(const void *cmpfn_data,
const void *keydata UNUSED)
{
- const struct diff_options *opt = (void *)cmpfn_data;
+ struct diff_options *opt = (void *)cmpfn_data;
struct patch_id *a, *b;
a = container_of(eptr, struct patch_id, ent);--
2.43.0