X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/bafab423f20bc1448b293842c235965e1681f07e..ed3497b0de6634350cd17b320538fba918d4084c:/ui-atom.c?ds=sidebyside diff --git a/ui-atom.c b/ui-atom.c index 5b5525d..838f220 100644 --- a/ui-atom.c +++ b/ui-atom.c @@ -1,16 +1,17 @@ /* ui-atom.c: functions for atom feeds * - * Copyright (C) 2008 Lars Hjemli + * Copyright (C) 2006-2014 cgit Development Team * * Licensed under GNU General Public License v2 * (see COPYING for full license text) */ #include "cgit.h" +#include "ui-atom.h" #include "html.h" #include "ui-shared.h" -static void add_entry(struct commit *commit, char *host) +static void add_entry(struct commit *commit, const char *host) { char delim = '&'; char *hex; @@ -79,7 +80,7 @@ static void add_entry(struct commit *commit, char *host) void cgit_print_atom(char *tip, char *path, int max_count) { - char *host; + const char *host; const char *argv[] = {NULL, tip, NULL, NULL, NULL}; struct commit *commit; struct rev_info rev;