diff options
author | Lukas Fleischer | 2013-03-04 08:52:33 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2013-03-04 19:50:39 -0500 |
commit | bafab423f20bc1448b293842c235965e1681f07e (patch) | |
tree | 18c4bef1e4714c4abd20b8e1d5ec04db3ae3b9ac /ui-repolist.c | |
parent | d5a43b429a4248a02e3a403f76fff0cbae92ef32 (diff) | |
download | cgit-bafab423f20bc1448b293842c235965e1681f07e.tar.gz cgit-bafab423f20bc1448b293842c235965e1681f07e.tar.bz2 cgit-bafab423f20bc1448b293842c235965e1681f07e.zip |
Mark several functions/variables static
Spotted by parsing the output of `gcc -Wmissing-prototypes [...]`.
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to 'ui-repolist.c')
-rw-r--r-- | ui-repolist.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 1ae22aa..66c88c4 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -12,7 +12,7 @@ | |||
12 | #include "ui-shared.h" | 12 | #include "ui-shared.h" |
13 | #include <strings.h> | 13 | #include <strings.h> |
14 | 14 | ||
15 | time_t read_agefile(char *path) | 15 | static time_t read_agefile(char *path) |
16 | { | 16 | { |
17 | time_t result; | 17 | time_t result; |
18 | size_t size; | 18 | size_t size; |
@@ -76,7 +76,7 @@ static void print_modtime(struct cgit_repo *repo) | |||
76 | cgit_print_age(t, -1, NULL); | 76 | cgit_print_age(t, -1, NULL); |
77 | } | 77 | } |
78 | 78 | ||
79 | int is_match(struct cgit_repo *repo) | 79 | static int is_match(struct cgit_repo *repo) |
80 | { | 80 | { |
81 | if (!ctx.qry.search) | 81 | if (!ctx.qry.search) |
82 | return 1; | 82 | return 1; |
@@ -91,7 +91,7 @@ int is_match(struct cgit_repo *repo) | |||
91 | return 0; | 91 | return 0; |
92 | } | 92 | } |
93 | 93 | ||
94 | int is_in_url(struct cgit_repo *repo) | 94 | static int is_in_url(struct cgit_repo *repo) |
95 | { | 95 | { |
96 | if (!ctx.qry.url) | 96 | if (!ctx.qry.url) |
97 | return 1; | 97 | return 1; |
@@ -100,7 +100,7 @@ int is_in_url(struct cgit_repo *repo) | |||
100 | return 0; | 100 | return 0; |
101 | } | 101 | } |
102 | 102 | ||
103 | void print_sort_header(const char *title, const char *sort) | 103 | static void print_sort_header(const char *title, const char *sort) |
104 | { | 104 | { |
105 | htmlf("<th class='left'><a href='%s?s=%s", cgit_rooturl(), sort); | 105 | htmlf("<th class='left'><a href='%s?s=%s", cgit_rooturl(), sort); |
106 | if (ctx.qry.search) { | 106 | if (ctx.qry.search) { |
@@ -110,7 +110,7 @@ void print_sort_header(const char *title, const char *sort) | |||
110 | htmlf("'>%s</a></th>", title); | 110 | htmlf("'>%s</a></th>", title); |
111 | } | 111 | } |
112 | 112 | ||
113 | void print_header() | 113 | static void print_header() |
114 | { | 114 | { |
115 | html("<tr class='nohover'>"); | 115 | html("<tr class='nohover'>"); |
116 | print_sort_header("Name", "name"); | 116 | print_sort_header("Name", "name"); |
@@ -124,7 +124,7 @@ void print_header() | |||
124 | } | 124 | } |
125 | 125 | ||
126 | 126 | ||
127 | void print_pager(int items, int pagelen, char *search, char *sort) | 127 | static void print_pager(int items, int pagelen, char *search, char *sort) |
128 | { | 128 | { |
129 | int i, ofs; | 129 | int i, ofs; |
130 | char *class = NULL; | 130 | char *class = NULL; |
@@ -223,7 +223,7 @@ struct sortcolumn sortcolumn[] = { | |||
223 | {NULL, NULL} | 223 | {NULL, NULL} |
224 | }; | 224 | }; |
225 | 225 | ||
226 | int sort_repolist(char *field) | 226 | static int sort_repolist(char *field) |
227 | { | 227 | { |
228 | struct sortcolumn *column; | 228 | struct sortcolumn *column; |
229 | 229 | ||