aboutsummaryrefslogtreecommitdiffstats
path: root/ui-shared.h
diff options
context:
space:
mode:
authorChristian Hesse2015-10-09 13:15:47 +0200
committerJason A. Donenfeld2015-10-09 14:00:56 +0200
commitc5c0eb873e0b9e40ffc3e85b621310ee85059ceb (patch)
tree06a3a6e14a805de318635166912e8c3a1cc7c7ec /ui-shared.h
parent37fce9916a264e23c0639df56ca3ecbbdc1c84b8 (diff)
downloadcgit-c5c0eb873e0b9e40ffc3e85b621310ee85059ceb.tar.gz
cgit-c5c0eb873e0b9e40ffc3e85b621310ee85059ceb.tar.bz2
cgit-c5c0eb873e0b9e40ffc3e85b621310ee85059ceb.zip
ui-shared: return value of cgit_currenturl is not const
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-shared.h')
-rw-r--r--ui-shared.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.h b/ui-shared.h
index 246678b..4121416 100644
--- a/ui-shared.h
+++ b/ui-shared.h
@@ -4,7 +4,7 @@
4extern const char *cgit_httpscheme(); 4extern const char *cgit_httpscheme();
5extern const char *cgit_hosturl(); 5extern const char *cgit_hosturl();
6extern const char *cgit_rooturl(); 6extern const char *cgit_rooturl();
7extern const char *cgit_currenturl(); 7extern char *cgit_currenturl();
8extern const char *cgit_loginurl(); 8extern const char *cgit_loginurl();
9extern char *cgit_repourl(const char *reponame); 9extern char *cgit_repourl(const char *reponame);
10extern char *cgit_fileurl(const char *reponame, const char *pagename, 10extern char *cgit_fileurl(const char *reponame, const char *pagename,