global: make 'char *path' const where possible Signed-off-by: Christian Hesse <mail@eworm.de>
Christian Hesse mail@eworm.de
Wed, 02 Jan 2019 17:25:01 +0100
9 files changed,
10 insertions(+),
10 deletions(-)
M
ui-log.c
→
ui-log.c
@@ -362,7 +362,7 @@ return result;
} void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern, - char *path, int pager, int commit_graph, int commit_sort) + const char *path, int pager, int commit_graph, int commit_sort) { struct rev_info rev; struct commit *commit;
M
ui-log.h
→
ui-log.h
@@ -2,7 +2,7 @@ #ifndef UI_LOG_H
#define UI_LOG_H extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, - char *pattern, char *path, int pager, + char *pattern, const char *path, int pager, int commit_graph, int commit_sort); extern void show_commit_decorations(struct commit *commit);
M
ui-repolist.c
→
ui-repolist.c
@@ -11,7 +11,7 @@ #include "ui-repolist.h"
#include "html.h" #include "ui-shared.h" -static time_t read_agefile(char *path) +static time_t read_agefile(const char *path) { time_t result; size_t size;
M
ui-summary.c
→
ui-summary.c
@@ -99,7 +99,7 @@
return full_path; } -void cgit_print_repo_readme(char *path) +void cgit_print_repo_readme(const char *path) { char *filename, *ref, *mimetype; int free_filename = 0;
M
ui-summary.h
→
ui-summary.h
@@ -2,6 +2,6 @@ #ifndef UI_SUMMARY_H
#define UI_SUMMARY_H extern void cgit_print_summary(void); -extern void cgit_print_repo_readme(char *path); +extern void cgit_print_repo_readme(const char *path); #endif /* UI_SUMMARY_H */
M
ui-tree.c
→
ui-tree.c
@@ -84,7 +84,7 @@ }
html("</table>\n"); } -static void print_object(const struct object_id *oid, char *path, const char *basename, const char *rev) +static void print_object(const struct object_id *oid, const char *path, const char *basename, const char *rev) { enum object_type type; char *buf;@@ -279,7 +279,7 @@ html("</table>\n");
cgit_print_layout_end(); } -static void ls_tree(const struct object_id *oid, char *path, struct walk_tree_context *walk_tree_ctx) +static void ls_tree(const struct object_id *oid, const char *path, struct walk_tree_context *walk_tree_ctx) { struct tree *tree; struct pathspec paths = {