On Wed, Jun 04, 2025 at 08:06:43AM +0900, Mike Hommey wrote: > ``` > In file included from parse-options.c:1: > git-compat-util.h: In function ‘get_value’: > git-compat-util.h:489:21: error: ‘arg’ may be used uninitialized [-Werror=maybe-uninitialized] > 489 | #define error(...) (error(__VA_ARGS__), const_error()) > | ^~~~~ > parse-options.c:76:21: note: ‘arg’ was declared here > 76 | const char *arg; > | ^~~ > ``` A bit more explanation whether this warning is a false positive or whether this may be an actual issue would be welcome. Patrick