On 16/09/2021 21:30, Jim Meyering wrote:
I tried to build with upcoming GCC12 and with warnings + -Werror, and hit one failure. Here's a patch to avoid that:
Cool. Small nit; it's probably best to use a trailing ,
for our standard from of aggregate initialization. I.e.,
- struct change_status ch;
+ struct change_status ch = { 0, };
cheers,
Pádraig
