From fdff66b1eff3c38254e6c3eb449005149a6d7bc5 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Mon, 30 Dec 2013 18:30:32 +0000 Subject: Remove duplicate const specifiers from the declaration of mandoc_escape(). Found by Thomas Klausner using clang. No functional change. --- mandoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mandoc.c') diff --git a/mandoc.c b/mandoc.c index 579b4720..d2da1e94 100644 --- a/mandoc.c +++ b/mandoc.c @@ -40,7 +40,7 @@ static char *time2a(time_t); enum mandoc_esc -mandoc_escape(const char const **end, const char const **start, int *sz) +mandoc_escape(const char **end, const char **start, int *sz) { const char *local_start; int local_sz; -- cgit