From 48b1f615ccd6f22e18e6caa0135684dc84559119 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Wed, 9 Jul 2014 11:31:43 +0000 Subject: mark defos as const; nobody needs to change it, and it is occasionally useful to be able to pass literal strings --- mdoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdoc.c') diff --git a/mdoc.c b/mdoc.c index ead01c15..d5ae55cf 100644 --- a/mdoc.c +++ b/mdoc.c @@ -189,7 +189,7 @@ mdoc_free(struct mdoc *mdoc) */ struct mdoc * mdoc_alloc(struct roff *roff, struct mparse *parse, - char *defos, int quick) + const char *defos, int quick) { struct mdoc *p; -- cgit