diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-07 13:20:58 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-07 13:20:58 +0000 |
commit | cbbbfb105eb8cfbcc27f89142cba69b42db39f7d (patch) | |
tree | b7cab75a0ae8f64d4be4b55ddaeeda14365789c3 /tbl_opts.c | |
parent | a3c093fb3143635348eebf55d192d7462c3ff1d1 (diff) | |
download | mandoc-cbbbfb105eb8cfbcc27f89142cba69b42db39f7d.tar.gz |
Quiesce lint with some type handling. Does not change anything.
Diffstat (limited to 'tbl_opts.c')
-rw-r--r-- | tbl_opts.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -72,12 +72,12 @@ static const struct tbl_phrase keys[KEY_MAXKEYS] = { }; static int arg(struct tbl_node *, int, - const char *, int *, int); + const char *, int *, enum tbl_ident); static void opt(struct tbl_node *, int, const char *, int *); static int -arg(struct tbl_node *tbl, int ln, const char *p, int *pos, int key) +arg(struct tbl_node *tbl, int ln, const char *p, int *pos, enum tbl_ident key) { int i; char buf[KEY_MAXNUMSZ]; |