diff options
author | John Keeping | 2015-03-08 16:32:22 +0000 |
---|---|---|
committer | Jason A. Donenfeld | 2015-03-09 17:39:48 +0100 |
commit | 0f23d4651c80170574c0ab2f091c0718150631ce (patch) | |
tree | f3d7ce05b09d685deda9d553929366185fa8b5d9 /ui-shared.c | |
parent | ad74669e67ea08969776e6700ec37323e4935e23 (diff) | |
download | cgit-0f23d4651c80170574c0ab2f091c0718150631ce.tar.gz cgit-0f23d4651c80170574c0ab2f091c0718150631ce.tar.bz2 cgit-0f23d4651c80170574c0ab2f091c0718150631ce.zip |
ui-shared: make cgit_doctype 'static'
This is not used outside this file and is not declared.
Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'ui-shared.c')
-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 6d3cfa9..d4c4bb9 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -11,7 +11,7 @@ | |||
11 | #include "cmd.h" | 11 | #include "cmd.h" |
12 | #include "html.h" | 12 | #include "html.h" |
13 | 13 | ||
14 | const char cgit_doctype[] = | 14 | static const char cgit_doctype[] = |
15 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" | 15 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
16 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; | 16 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
17 | 17 | ||