diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 17:26:34 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 17:26:34 +0000 |
commit | be5d404d6880216c5a9e45bdb25f6b4aa0297820 (patch) | |
tree | 6c91992a34d4c804bac83161468e59a47e1bca43 /mdoc_strings.c | |
parent | 24ee7b68faaa510f688ccfac0c58449ecc28cae5 (diff) | |
download | mandoc-be5d404d6880216c5a9e45bdb25f6b4aa0297820.tar.gz |
Lint-fix for enum return (ok schwarze@).
Diffstat (limited to 'mdoc_strings.c')
-rw-r--r-- | mdoc_strings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_strings.c b/mdoc_strings.c index a5ebdc83..675d0769 100644 --- a/mdoc_strings.c +++ b/mdoc_strings.c @@ -97,7 +97,7 @@ mdoc_isdelim(const char *p) { if ('\0' == p[0]) - return(0); + return(DELIM_NONE); if ('\0' == p[1]) return(mdoc_iscdelim(p[0])); |