* [PATCH] bloom: remove a misleading const qualifier
@ 2026-03-09 2:55 Collin Funk
2026-03-09 14:59 ` Junio C Hamano
0 siblings, 1 reply; 2+ messages in thread
From: Collin Funk @ 2026-03-09 2:55 UTC (permalink / raw)
To: git; +Cc: Collin Funk, Junio C Hamano
When building with glibc-2.43 there is the following warning:
bloom.c: In function ‘get_or_compute_bloom_filter’:
bloom.c:515:52: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
515 | char *last_slash = strrchr(path, '/');
| ^~~~~~~
In this case, we always write through "path" through the "last_slash"
pointer. Therefore, the const qualifier on "path" is misleading and we
can just remove it.
Signed-off-by: Collin Funk <collin.funk1@gmail.com>
---
bloom.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bloom.c b/bloom.c
index 77a6fddf72..a805ac0c29 100644
--- a/bloom.c
+++ b/bloom.c
@@ -501,7 +501,7 @@ struct bloom_filter *get_or_compute_bloom_filter(struct repository *r,
struct hashmap_iter iter;
for (i = 0; i < diff_queued_diff.nr; i++) {
- const char *path = diff_queued_diff.queue[i]->two->path;
+ char *path = diff_queued_diff.queue[i]->two->path;
/*
* Add each leading directory of the changed file, i.e. for
@@ -523,7 +523,7 @@ struct bloom_filter *get_or_compute_bloom_filter(struct repository *r,
free(e);
if (!last_slash)
- last_slash = (char*)path;
+ last_slash = path;
*last_slash = '\0';
} while (*path);
--
2.53.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] bloom: remove a misleading const qualifier
2026-03-09 2:55 [PATCH] bloom: remove a misleading const qualifier Collin Funk
@ 2026-03-09 14:59 ` Junio C Hamano
0 siblings, 0 replies; 2+ messages in thread
From: Junio C Hamano @ 2026-03-09 14:59 UTC (permalink / raw)
To: Collin Funk; +Cc: git
Collin Funk <collin.funk1@gmail.com> writes:
> When building with glibc-2.43 there is the following warning:
>
> bloom.c: In function ‘get_or_compute_bloom_filter’:
> bloom.c:515:52: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
> 515 | char *last_slash = strrchr(path, '/');
> | ^~~~~~~
>
> In this case, we always write through "path" through the "last_slash"
> pointer. Therefore, the const qualifier on "path" is misleading and we
> can just remove it.
Right. Thanks.
> Signed-off-by: Collin Funk <collin.funk1@gmail.com>
> ---
> bloom.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/bloom.c b/bloom.c
> index 77a6fddf72..a805ac0c29 100644
> --- a/bloom.c
> +++ b/bloom.c
> @@ -501,7 +501,7 @@ struct bloom_filter *get_or_compute_bloom_filter(struct repository *r,
> struct hashmap_iter iter;
>
> for (i = 0; i < diff_queued_diff.nr; i++) {
> - const char *path = diff_queued_diff.queue[i]->two->path;
> + char *path = diff_queued_diff.queue[i]->two->path;
>
> /*
> * Add each leading directory of the changed file, i.e. for
> @@ -523,7 +523,7 @@ struct bloom_filter *get_or_compute_bloom_filter(struct repository *r,
> free(e);
>
> if (!last_slash)
> - last_slash = (char*)path;
> + last_slash = path;
> *last_slash = '\0';
>
> } while (*path);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-09 14:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-09 2:55 [PATCH] bloom: remove a misleading const qualifier Collin Funk
2026-03-09 14:59 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox