"brian m. carlson" <sandals@xxxxxxxxxxxxxxxxxxxx> writes: > + fd = open(argv[1], O_WRONLY | O_CREAT, 0600); > + if (fd < 0) > + die_errno("failed to open file %s", argv[1]); contrib/coccinelle/xopen.cocci tells us to write this simply as fd = xopen(argv[1], O_WRONLY | O_CREAT, 0600); https://github.com/git/git/actions/runs/6500777388/job/17656837393#step:4:657