diff options
author | Martijn van Duren <martijn@cvs.openbsd.org> | 2016-05-02 18:24:26 +0000 |
---|---|---|
committer | Martijn van Duren <martijn@cvs.openbsd.org> | 2016-05-02 18:24:26 +0000 |
commit | 5ac1513f7000459d906395b3a9157798b5031fb6 (patch) | |
tree | f80d2e87ccbe977f5f1127062f4d0aca63f795fd /usr.bin/vi/ex/ex_cd.c | |
parent | 24ae9ab57aeb722a2c97a31ec7cb5a2f788d09e0 (diff) |
Remove CHAR_T in favor of native types.
schwarze@ agrees with the direction.
Few tweaks and OK tb@
Diffstat (limited to 'usr.bin/vi/ex/ex_cd.c')
-rw-r--r-- | usr.bin/vi/ex/ex_cd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/ex/ex_cd.c b/usr.bin/vi/ex/ex_cd.c index aeb778b065e..6006618377f 100644 --- a/usr.bin/vi/ex/ex_cd.c +++ b/usr.bin/vi/ex/ex_cd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ex_cd.c,v 1.12 2016/01/06 22:28:52 millert Exp $ */ +/* $OpenBSD: ex_cd.c,v 1.13 2016/05/02 18:24:25 martijn Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 @@ -35,7 +35,7 @@ ex_cd(SCR *sp, EXCMD *cmdp) { struct passwd *pw; ARGS *ap; - CHAR_T savech; + char savech; char *dir, *p, *t; /* XXX: END OF THE STACK, DON'T TRUST GETCWD. */ char buf[PATH_MAX * 2]; |