diff options
| author | Brooks Davis <brooks@FreeBSD.org> | 2019-10-08 21:14:09 +0000 |
|---|---|---|
| committer | Brooks Davis <brooks@FreeBSD.org> | 2019-10-08 21:14:09 +0000 |
| commit | f18976136625a7d016e97bfd9eabddf640b3e06d (patch) | |
| tree | 9a4c415888f988d32443cacadb70754b608ebecf /usr.bin/tip | |
| parent | cc698b490001646c7174d14af6500400be9bd4ff (diff) | |
Notes
Diffstat (limited to 'usr.bin/tip')
| -rw-r--r-- | usr.bin/tip/tip/acu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/tip/tip/acu.c b/usr.bin/tip/tip/acu.c index d24e7f752926..0188be3c6406 100644 --- a/usr.bin/tip/tip/acu.c +++ b/usr.bin/tip/tip/acu.c @@ -190,7 +190,7 @@ acutype(char *s) acu_t *p; extern acu_t acutable[]; - for (p = acutable; p->acu_name != '\0'; p++) + for (p = acutable; p->acu_name != NULL; p++) if (!strcmp(s, p->acu_name)) return (p); return (NOACU); |
