summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2002-06-05 01:32:21 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2002-06-05 01:32:21 +0000
commitb69566d8e1ff3730dbe2da6c25751eea8806a229 (patch)
treeceb61201413a69b02e522135430f1244bf6d9a41
parent3600cbb7c4c4d11acede7af3710b6deea964006c (diff)
Notes
-rw-r--r--bin/ps/fmt.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/ps/fmt.c b/bin/ps/fmt.c
index 32ed78b2eaad..18dee94581ef 100644
--- a/bin/ps/fmt.c
+++ b/bin/ps/fmt.c
@@ -81,18 +81,18 @@ shquote(char **argv)
errx(1, "malloc failed");
}
- if (*argv == 0) {
- buf[0] = 0;
+ if (*argv == NULL) {
+ buf[0] = '\0';
return (buf);
}
dst = buf;
- for (p = argv; (src = *p++) != 0; ) {
- if (*src == 0)
+ for (p = argv; (src = *p++) != NULL; ) {
+ if (*src == '\0')
continue;
len = (buf_size - 1 - (dst - buf)) / 4;
strvisx(dst, src, strlen(src) < len ? strlen(src) : len,
VIS_NL | VIS_CSTYLE);
- while (*dst)
+ while (*dst != '\0')
dst++;
if ((buf_size - 1 - (dst - buf)) / 4 > 0)
*dst++ = ' ';