summaryrefslogtreecommitdiff
path: root/usr/src/cmd/tip/acu.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/cmd/tip/acu.c')
-rw-r--r--usr/src/cmd/tip/acu.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr/src/cmd/tip/acu.c b/usr/src/cmd/tip/acu.c
index d2797f7452..7b543a9011 100644
--- a/usr/src/cmd/tip/acu.c
+++ b/usr/src/cmd/tip/acu.c
@@ -9,8 +9,6 @@
* specifies the terms and conditions for redistribution.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#include "tip.h"
extern acu_t acutable[];
@@ -154,7 +152,7 @@ acutype(char *s)
acu_t *p;
if (s != NOSTR)
- for (p = acutable; p->acu_name != '\0'; p++)
+ for (p = acutable; p->acu_name != NULL; p++)
if (equal(s, p->acu_name))
return (p);
return (NOACU);