diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-22 19:10:48 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-22 19:10:48 +0000 |
commit | 8a11019331905f2ee9db28cc4a61f016d169de4e (patch) | |
tree | 6f5e54dbfa69c8086b5ec289a70d8455a889c4b3 /terminal.c | |
parent | f94cbe774aa5f31e8ec88173a16618e5ef9a22a0 (diff) | |
download | mandoc-8a11019331905f2ee9db28cc4a61f016d169de4e.tar.gz |
Lint fixes.
Diffstat (limited to 'terminal.c')
-rw-r--r-- | terminal.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -46,8 +46,8 @@ static void term_nescape(struct termp *, static void term_chara(struct termp *, char); static void term_stringa(struct termp *, const char *, size_t); -static int term_isopendelim(const char *, size_t); -static int term_isclosedelim(const char *, size_t); +static int term_isopendelim(const char *, int); +static int term_isclosedelim(const char *, int); static void sanity(const struct mdoc_node *); /* XXX */ @@ -129,7 +129,7 @@ term_alloc(enum termenc enc) static int -term_isclosedelim(const char *p, size_t len) +term_isclosedelim(const char *p, int len) { if (1 != len) @@ -163,7 +163,7 @@ term_isclosedelim(const char *p, size_t len) static int -term_isopendelim(const char *p, size_t len) +term_isopendelim(const char *p, int len) { if (1 != len) |