diff options
| author | Junio C Hamano <gitster@pobox.com> | 2022-05-02 09:50:37 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2022-05-02 09:50:37 -0700 |
| commit | afe8a9070bc62db9cfde1e30147178c40d391d93 (patch) | |
| tree | d237acac7915db89829db7da1d0405f2e595a68b /builtin/log.c | |
| parent | contrib/coccinnelle: add equals-null.cocci (diff) | |
| download | git-afe8a9070bc62db9cfde1e30147178c40d391d93.tar.gz git-afe8a9070bc62db9cfde1e30147178c40d391d93.zip | |
tree-wide: apply equals-null.cocci
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/log.c')
| -rw-r--r-- | builtin/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/log.c b/builtin/log.c index f75d87e8d7..824e172d09 100644 --- a/builtin/log.c +++ b/builtin/log.c @@ -978,7 +978,7 @@ static int open_next_file(struct commit *commit, const char *subject, if (!quiet) printf("%s\n", filename.buf + outdir_offset); - if ((rev->diffopt.file = fopen(filename.buf, "w")) == NULL) { + if (!(rev->diffopt.file = fopen(filename.buf, "w"))) { error_errno(_("cannot open patch file %s"), filename.buf); strbuf_release(&filename); return -1; |
