"brian m. carlson" <sandals@xxxxxxxxxxxxxxxxxxxx> writes: > On 2023-10-12 at 22:52:59, Junio C Hamano wrote: >> "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); > > Sure, I can do that. Unless there are other changes needed, I'll handle it on this end. Thanks.