aboutsummaryrefslogtreecommitdiff
path: root/sort.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 /sort.c
parentSimplify types for sort func (diff)
downloadtunics-cb7abfb92d2c1fba40c686f28ab55f8a8fa931eb.tar.gz
tunics-cb7abfb92d2c1fba40c686f28ab55f8a8fa931eb.zip
Use implicit NULL tests
Diffstat (limited to 'sort.c')
-rw-r--r--sort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sort.c b/sort.c
index a5c09b1..ee4949d 100644
--- a/sort.c
+++ b/sort.c
@@ -7,7 +7,7 @@ int main(void) {
lines = vec_init();
- while ((line = read_line(stdin)) != NULL) {
+ while ((line = read_line(stdin))) {
vec_add(lines, line);
}
free(line);
@@ -34,7 +34,7 @@ char *read_line(FILE* stream) {
buf = malloc(BUF_SIZE);
for (;;) {
- if (fgets(buf, BUF_SIZE, stream) == NULL) {
+ if (!fgets(buf, BUF_SIZE, stream)) {
free(buf);
free(line);
return NULL;