diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2016-03-20 20:35:39 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2016-03-20 20:35:39 +0000 |
commit | 1a6015f11d99d7331192eabb204acd6d822841c8 (patch) | |
tree | 8b6b590beeee11f91e9cb9926341ba53ede1f1e6 /lib/libedit/refresh.h | |
parent | 3cf2531c4a31cce7e0684ec6aa285fc264eebd76 (diff) |
Delete the useless Int datatype and always use the standard wint_t
directly. This is not a problem because <wchar_t> is required all
over the place anyway, even when WIDECHAR is not defined.
No functional change except that it fixes a few printf(3)
format string issues, %c vs. %lc.
OK czarkoff@
Diffstat (limited to 'lib/libedit/refresh.h')
-rw-r--r-- | lib/libedit/refresh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libedit/refresh.h b/lib/libedit/refresh.h index 9992525b05f..c91f7ff4d78 100644 --- a/lib/libedit/refresh.h +++ b/lib/libedit/refresh.h @@ -1,4 +1,4 @@ -/* $OpenBSD: refresh.h,v 1.7 2010/06/30 00:05:35 nicm Exp $ */ +/* $OpenBSD: refresh.h,v 1.8 2016/03/20 20:35:38 schwarze Exp $ */ /* $NetBSD: refresh.h,v 1.6 2009/12/30 22:37:40 christos Exp $ */ /*- @@ -49,7 +49,7 @@ typedef struct { int r_newcv; } el_refresh_t; -protected void re_putc(EditLine *, Int, int); +protected void re_putc(EditLine *, wint_t, int); protected void re_clear_lines(EditLine *); protected void re_clear_display(EditLine *); protected void re_refresh(EditLine *); |