diff options
author | Christian Hesse <mail@eworm.de> | 2015-10-09 14:15:50 +0300 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-10-09 15:04:27 +0300 |
commit | f77e2a8cfaf07b25ddedd57348a1d957b048bbf5 (patch) | |
tree | 3665e4bdb8f16401f43aeb309e9f8206ae2b2ded /ui-shared.h | |
parent | 6f2e4400faebd829f905c824400f933fe07f5c30 (diff) |
ui-shared: return value of cgit_hosturl is not const
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-shared.h')
-rw-r--r-- | ui-shared.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.h b/ui-shared.h index 4121416..474e0c5 100644 --- a/ui-shared.h +++ b/ui-shared.h @@ -2,7 +2,7 @@ #define UI_SHARED_H extern const char *cgit_httpscheme(); -extern const char *cgit_hosturl(); +extern char *cgit_hosturl(); extern const char *cgit_rooturl(); extern char *cgit_currenturl(); extern const char *cgit_loginurl(); |