* [PATCH] fix an 'dubious one-bit signed bitfield' error
@ 2017-11-03 17:05 Ramsay Jones
2017-11-03 17:26 ` Jeff Hostetler
0 siblings, 1 reply; 2+ messages in thread
From: Ramsay Jones @ 2017-11-03 17:05 UTC (permalink / raw)
To: Jeff Hostetler; +Cc: Junio C Hamano, GIT Mailing-list
Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
---
Hi Jeff,
If you need to re-roll your 'jh/object-filtering' branch, could
you please squash this into the relevant commit (b87fd93d81,
"list-objects: filter objects in traverse_commit_list", 02-11-2017).
[This error was issued by sparse]
Thanks!
ATB,
Ramsay Jones
list-objects-filter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/list-objects-filter.c b/list-objects-filter.c
index 7f2842547..d9e626be8 100644
--- a/list-objects-filter.c
+++ b/list-objects-filter.c
@@ -191,7 +191,7 @@ static void *filter_blobs_limit__init(
*/
struct frame {
int defval;
- int child_prov_omit : 1;
+ unsigned int child_prov_omit : 1;
};
struct filter_sparse_data {
--
2.15.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] fix an 'dubious one-bit signed bitfield' error
2017-11-03 17:05 [PATCH] fix an 'dubious one-bit signed bitfield' error Ramsay Jones
@ 2017-11-03 17:26 ` Jeff Hostetler
0 siblings, 0 replies; 2+ messages in thread
From: Jeff Hostetler @ 2017-11-03 17:26 UTC (permalink / raw)
To: Ramsay Jones, Jeff Hostetler; +Cc: Junio C Hamano, GIT Mailing-list
d'oh. thanks!
On 11/3/2017 1:05 PM, Ramsay Jones wrote:
>
> Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
> ---
>
> Hi Jeff,
>
> If you need to re-roll your 'jh/object-filtering' branch, could
> you please squash this into the relevant commit (b87fd93d81,
> "list-objects: filter objects in traverse_commit_list", 02-11-2017).
>
> [This error was issued by sparse]
>
> Thanks!
>
> ATB,
> Ramsay Jones
>
> list-objects-filter.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/list-objects-filter.c b/list-objects-filter.c
> index 7f2842547..d9e626be8 100644
> --- a/list-objects-filter.c
> +++ b/list-objects-filter.c
> @@ -191,7 +191,7 @@ static void *filter_blobs_limit__init(
> */
> struct frame {
> int defval;
> - int child_prov_omit : 1;
> + unsigned int child_prov_omit : 1;
> };
>
> struct filter_sparse_data {
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-11-03 17:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-03 17:05 [PATCH] fix an 'dubious one-bit signed bitfield' error Ramsay Jones
2017-11-03 17:26 ` Jeff Hostetler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).