Diffstat (limited to 'cgit.h')
| -rw-r--r-- | cgit.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -245,13 +245,13 @@ struct cgit_page { time_t modified; time_t expires; size_t size; - const char *mimetype; - const char *charset; - const char *filename; - const char *etag; - const char *title; + char *mimetype; + char *charset; + char *filename; + char *etag; + char *title; int status; - const char *statusmsg; + char *statusmsg; }; struct cgit_environment { |