From be5d404d6880216c5a9e45bdb25f6b4aa0297820 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 15 May 2010 17:26:34 +0000 Subject: Lint-fix for enum return (ok schwarze@). --- mdoc_strings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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])); -- cgit