diff options
author | 2014-05-06 20:50:42 +0000 | |
---|---|---|
committer | 2014-05-06 20:50:42 +0000 | |
commit | 542b517ffb6b9a331316eb75d5461f6e58a92d5a (patch) | |
tree | 483f1be3abf07c983071a783d9e2e6a3e7ed3241 | |
parent | Make sure the stdout output is check, to confirm proper sorting. (diff) | |
download | wireguard-openbsd-542b517ffb6b9a331316eb75d5461f6e58a92d5a.tar.xz wireguard-openbsd-542b517ffb6b9a331316eb75d5461f6e58a92d5a.zip |
spell NULL as NULL
-rw-r--r-- | bin/ps/fmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ps/fmt.c b/bin/ps/fmt.c index 1b7f7e38e04..fc1fa4df573 100644 --- a/bin/ps/fmt.c +++ b/bin/ps/fmt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fmt.c,v 1.11 2013/11/11 23:07:15 deraadt Exp $ */ +/* $OpenBSD: fmt.c,v 1.12 2014/05/06 20:50:42 tedu Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -56,7 +56,7 @@ fmt_puts(const char *s, int *leftp) while (len > newmaxlen) newmaxlen *= 2; nv = realloc(v, newmaxlen); - if (nv == 0) { + if (nv == NULL) { free(v); v = NULL; maxlen = 0; |