From 57d09bf448990b3a67436e928807e854e491756f Mon Sep 17 00:00:00 2001 From: John Keeping Date: Sun, 7 Apr 2013 12:46:45 +0100 Subject: Mark char* fields in struct cgit_page as const Signed-off-by: John Keeping --- cgit.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cgit.h') diff --git a/cgit.h b/cgit.h index fc3fc6f..7581cc1 100644 --- a/cgit.h +++ b/cgit.h @@ -245,13 +245,13 @@ struct cgit_page { time_t modified; time_t expires; size_t size; - char *mimetype; - char *charset; - char *filename; - char *etag; - char *title; + const char *mimetype; + const char *charset; + const char *filename; + const char *etag; + const char *title; int status; - char *statusmsg; + const char *statusmsg; }; struct cgit_environment { -- cgit v1.2.1