aboutsummaryrefslogtreecommitdiffstats
path: root/sh-i18n--envsubst.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-05-02 09:50:37 -0700
committerJunio C Hamano <gitster@pobox.com>2022-05-02 09:50:37 -0700
commitafe8a9070bc62db9cfde1e30147178c40d391d93 (patch)
treed237acac7915db89829db7da1d0405f2e595a68b /sh-i18n--envsubst.c
parent7a618493facb79639231f797e492fab51fac2ba4 (diff)
downloadgit-afe8a9070bc62db9cfde1e30147178c40d391d93.tar.gz
tree-wide: apply equals-null.cocci
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sh-i18n--envsubst.c')
-rw-r--r--sh-i18n--envsubst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh-i18n--envsubst.c b/sh-i18n--envsubst.c
index 6cd307ac2c..133496bd4d 100644
--- a/sh-i18n--envsubst.c
+++ b/sh-i18n--envsubst.c
@@ -397,7 +397,7 @@ subst_from_stdin (void)
/* Substitute the variable's value from the environment. */
const char *env_value = getenv (buffer);
- if (env_value != NULL)
+ if (env_value)
fputs (env_value, stdout);
}
else