about summary refs log tree commit diff stats
path: root/ui-atom.c
diff options
context:
space:
mode:
authorLukas Fleischer2013-04-01 17:11:13 +0200
committerJason A. Donenfeld2013-04-08 15:43:17 +0200
commit996f86e664ab6d00a9304a42374e9c691b78ca6b (patch)
tree1f2358c286eedfb86c89ea812b0bcd45c71cd1d9 /ui-atom.c
parentUpdate git to v1.8.2.1 (diff)
downloadcgit-996f86e664ab6d00a9304a42374e9c691b78ca6b.tar.gz
cgit-996f86e664ab6d00a9304a42374e9c691b78ca6b.zip
Return const char * in cgit_{httpscheme, hosturl, rooturl}()
The return values of these functions are essentially constant and should
never be modified.

Note that this will introduce a compiler warning when we try to free the
return value of any of these functions. However, given that all of these
currently return statically allocated strings in some cases, they need
to be refactored before this can be done anyway.

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to 'ui-atom.c')
-rw-r--r--ui-atom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-atom.c b/ui-atom.c index 5b5525d..1554088 100644 --- a/ui-atom.c +++ b/ui-atom.c
@@ -10,7 +10,7 @@
10#include "html.h" 10#include "html.h"
11#include "ui-shared.h" 11#include "ui-shared.h"
12 12
13static void add_entry(struct commit *commit, char *host) 13static void add_entry(struct commit *commit, const char *host)
14{ 14{
15 char delim = '&'; 15 char delim = '&';
16 char *hex; 16 char *hex;
@@ -79,7 +79,7 @@ static void add_entry(struct commit *commit, char *host)
79 79
80void cgit_print_atom(char *tip, char *path, int max_count) 80void cgit_print_atom(char *tip, char *path, int max_count)
81{ 81{
82 char *host; 82 const char *host;
83 const char *argv[] = {NULL, tip, NULL, NULL, NULL}; 83 const char *argv[] = {NULL, tip, NULL, NULL, NULL};
84 struct commit *commit; 84 struct commit *commit;
85 struct rev_info rev; 85 struct rev_info rev;