summaryrefslogtreecommitdiffstats
path: root/log-tree.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-05-02 19:06:00 +0200
committerJunio C Hamano <gitster@pobox.com>2022-05-02 19:06:04 +0200
commit2b0a58d164b0642be3eeb476fecd28114445cdd5 (patch)
tree2759549fcdd5d3ce4c9776f67937b4b75c07070f /log-tree.c
parentGit 2.35.3 (diff)
parenttree-wide: apply equals-null.cocci (diff)
downloadgit-2b0a58d164b0642be3eeb476fecd28114445cdd5.tar.xz
git-2b0a58d164b0642be3eeb476fecd28114445cdd5.zip
Merge branch 'ep/maint-equals-null-cocci' for maint-2.35
* ep/maint-equals-null-cocci: tree-wide: apply equals-null.cocci contrib/coccinnelle: add equals-null.cocci
Diffstat (limited to 'log-tree.c')
-rw-r--r--log-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/log-tree.c b/log-tree.c
index d3e7a40b64..1ea8af0a83 100644
--- a/log-tree.c
+++ b/log-tree.c
@@ -84,7 +84,7 @@ static int match_ref_pattern(const char *refname,
const struct string_list_item *item)
{
int matched = 0;
- if (item->util == NULL) {
+ if (!item->util) {
if (!wildmatch(item->string, refname, 0))
matched = 1;
} else {