On Mon, Nov 15, 2021 at 11:24 PM Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> wrote: > > > On Mon, Nov 15 2021, Neeraj Singh via GitGitGadget wrote: > > > /* > > * This object store is ephemeral, so there is no need to fsync. > > */ > > - int will_destroy; > > + unsigned int will_destroy : 1; > > > > /* > > * Path to the alternative object store. If this is a relative path, > > Why add this as an int in the preceding commit and turn it "unsigned : > 1" here? Good catch. I'll fix this. This was an artifact of a previous version where there was another variable here as well. Thanks, Neeraj