Re: [PATCH 1/1] global: male 'char *path' const where possible

2019-01-02 Thread Christian Hesse
Jamie Couture  on Wed, 2019/01/02 18:14:
> s/male/make/
> 
> Perhaps?

Sure... Thanks!
-- 
main(a){char*c=/*Schoene Gruesse */"B?IJj;MEH"
"CX:;",b;for(a/*Best regards my address:*/=0;b=c[a++];)
putchar(b-1/(/*Chriscc -ox -xc - && ./x*/b/42*2-3)*42);}


pgp69M3s8_CD2.pgp
Description: OpenPGP digital signature
___
CGit mailing list
CGit@lists.zx2c4.com
https://lists.zx2c4.com/mailman/listinfo/cgit


Re: [PATCH 1/1] global: male 'char *path' const where possible

2019-01-02 Thread Jamie Couture
s/male/make/

Perhaps?

On Wed, Jan 2, 2019 at 2:45 PM Christian Hesse  wrote:

> "Jason A. Donenfeld"  on Wed, 2019/01/02 17:57:
> > Seems reasonable. Queue it up.
>
> Done.
> I stumbled upon this, probably there's a lot more to become const.
> --
> main(a){char*c=/*Schoene Gruesse */"B?IJj;MEH"
> "CX:;",b;for(a/*Best regards my address:*/=0;b=c[a++];)
> putchar(b-1/(/*Chriscc -ox -xc - && ./x
> */b/42*2-3)*42);}
> ___
> CGit mailing list
> CGit@lists.zx2c4.com
> https://lists.zx2c4.com/mailman/listinfo/cgit
>
___
CGit mailing list
CGit@lists.zx2c4.com
https://lists.zx2c4.com/mailman/listinfo/cgit


Re: [PATCH 1/1] global: male 'char *path' const where possible

2019-01-02 Thread Christian Hesse
"Jason A. Donenfeld"  on Wed, 2019/01/02 17:57:
> Seems reasonable. Queue it up.

Done.
I stumbled upon this, probably there's a lot more to become const.
-- 
main(a){char*c=/*Schoene Gruesse */"B?IJj;MEH"
"CX:;",b;for(a/*Best regards my address:*/=0;b=c[a++];)
putchar(b-1/(/*Chriscc -ox -xc - && ./x*/b/42*2-3)*42);}


pgpHFXvuFRUO0.pgp
Description: OpenPGP digital signature
___
CGit mailing list
CGit@lists.zx2c4.com
https://lists.zx2c4.com/mailman/listinfo/cgit


Re: [PATCH 1/1] global: male 'char *path' const where possible

2019-01-02 Thread Jason A. Donenfeld
Seems reasonable. Queue it up.
___
CGit mailing list
CGit@lists.zx2c4.com
https://lists.zx2c4.com/mailman/listinfo/cgit


[PATCH 1/1] global: male 'char *path' const where possible

2019-01-02 Thread Christian Hesse
From: Christian Hesse 

Signed-off-by: Christian Hesse 
---
 ui-atom.c | 2 +-
 ui-atom.h | 2 +-
 ui-log.c  | 2 +-
 ui-log.h  | 2 +-
 ui-refs.c | 2 +-
 ui-repolist.c | 2 +-
 ui-summary.c  | 2 +-
 ui-summary.h  | 2 +-
 ui-tree.c | 4 ++--
 9 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/ui-atom.c b/ui-atom.c
index 3866823..cd66f82 100644
--- a/ui-atom.c
+++ b/ui-atom.c
@@ -83,7 +83,7 @@ static void add_entry(struct commit *commit, const char *host)
 }
 
 
-void cgit_print_atom(char *tip, char *path, int max_count)
+void cgit_print_atom(char *tip, const char *path, int max_count)
 {
char *host;
const char *argv[] = {NULL, tip, NULL, NULL, NULL};
diff --git a/ui-atom.h b/ui-atom.h
index 749ffd3..dda953b 100644
--- a/ui-atom.h
+++ b/ui-atom.h
@@ -1,6 +1,6 @@
 #ifndef UI_ATOM_H
 #define UI_ATOM_H
 
-extern void cgit_print_atom(char *tip, char *path, int max_count);
+extern void cgit_print_atom(char *tip, const char *path, int max_count);
 
 #endif
diff --git a/ui-log.c b/ui-log.c
index 3bcb657..8c65425 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -362,7 +362,7 @@ static char *next_token(char **src)
 }
 
 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;
diff --git a/ui-log.h b/ui-log.h
index d324c92..325607c 100644
--- a/ui-log.h
+++ b/ui-log.h
@@ -2,7 +2,7 @@
 #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);
 
diff --git a/ui-refs.c b/ui-refs.c
index 2ec3858..456f610 100644
--- a/ui-refs.c
+++ b/ui-refs.c
@@ -136,7 +136,7 @@ static int print_tag(struct refinfo *ref)
return 0;
 }
 
-static void print_refs_link(char *path)
+static void print_refs_link(const char *path)
 {
html("");
cgit_refs_link("[...]", NULL, NULL, ctx.qry.head, NULL, path);
diff --git a/ui-repolist.c b/ui-repolist.c
index 41424c0..7cf7638 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -11,7 +11,7 @@
 #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;
diff --git a/ui-summary.c b/ui-summary.c
index 8e81ac4..947812a 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -99,7 +99,7 @@ static char* append_readme_path(const char *filename, const 
char *ref, const cha
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;
diff --git a/ui-summary.h b/ui-summary.h
index 0896650..cba696a 100644
--- a/ui-summary.h
+++ b/ui-summary.h
@@ -2,6 +2,6 @@
 #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 */
diff --git a/ui-tree.c b/ui-tree.c
index df8ad82..314ac52 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -84,7 +84,7 @@ static void print_binary_buffer(char *buf, unsigned long size)
html("\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 @@ static void ls_tail(void)
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 = {
___
CGit mailing list
CGit@lists.zx2c4.com
https://lists.zx2c4.com/mailman/listinfo/cgit