diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-30 18:30:32 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-30 18:30:32 +0000 |
commit | fdff66b1eff3c38254e6c3eb449005149a6d7bc5 (patch) | |
tree | ee0e80b3a08cc23674fcbe26df0bd6242b22c777 /mandoc.c | |
parent | c50fcb020d6b89ff503f7bc4bb8a3cc272fcbabe (diff) | |
download | mandoc-fdff66b1eff3c38254e6c3eb449005149a6d7bc5.tar.gz |
Remove duplicate const specifiers from the declaration of mandoc_escape().
Found by Thomas Klausner <wiz at NetBSD dot org> using clang.
No functional change.
Diffstat (limited to 'mandoc.c')
-rw-r--r-- | mandoc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |