diff options
| author | Collin Funk <collin.funk1@gmail.com> | 2026-03-08 19:55:11 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-03-09 07:58:04 -0700 |
| commit | 1ac1d4e761c5f394526873b364ba23cf5b9b0da5 (patch) | |
| tree | 5b89ad3d7f9007598c2dd75ed61545d1a72fc270 /dir.c | |
| parent | 9a2fb147f2c61d0cab52c883e7e26f5b7948e3ed (diff) | |
| download | git-1ac1d4e761c5f394526873b364ba23cf5b9b0da5.tar.xz | |
bloom: remove a misleading const qualifier
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>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.c')
0 files changed, 0 insertions, 0 deletions
