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 --- libmdoc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libmdoc.h') diff --git a/libmdoc.h b/libmdoc.h index 417948c3..3cc58f80 100644 --- a/libmdoc.h +++ b/libmdoc.h @@ -25,7 +25,7 @@ enum mdoc_next { struct mdoc { struct mparse *parse; /* parse pointer */ - char *defos; /* default argument for .Os */ + const char *defos; /* default argument for .Os */ int quick; /* abort parse early */ int flags; /* parse flags */ #define MDOC_HALT (1 << 0) /* error in parse: halt */ -- cgit