aboutsummaryrefslogtreecommitdiff
path: root/pwd.c
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-05-27 09:17:43 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-05-27 09:21:28 +1200
commitcb7abfb92d2c1fba40c686f28ab55f8a8fa931eb (patch)
tree5242cc6a3b130872282b7cb2c75dd848bd81805f /pwd.c
parentSimplify types for sort func (diff)
downloadtunics-cb7abfb92d2c1fba40c686f28ab55f8a8fa931eb.tar.gz
tunics-cb7abfb92d2c1fba40c686f28ab55f8a8fa931eb.zip
Use implicit NULL tests
Diffstat (limited to 'pwd.c')
-rw-r--r--pwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pwd.c b/pwd.c
index 13aeb06..3c6af52 100644
--- a/pwd.c
+++ b/pwd.c
@@ -3,7 +3,7 @@
int main(void)
{
char buf[PATH_MAX];
- if (getcwd(buf, sizeof(buf)) == NULL) {
+ if (!getcwd(buf, sizeof(buf))) {
perror("getcwd");
exit(EXIT_FAILURE);
}