mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Make strings[] and no_str[] const.
This commit is contained in:
parent
1668d78998
commit
455ea77ead
@ -70,7 +70,7 @@ struct codepage_desc {
|
||||
#include "intl/entity.inc"
|
||||
|
||||
|
||||
static char strings[256][2] = {
|
||||
static const char strings[256][2] = {
|
||||
"\000", "\001", "\002", "\003", "\004", "\005", "\006", "\007",
|
||||
"\010", "\011", "\012", "\013", "\014", "\015", "\016", "\017",
|
||||
"\020", "\021", "\022", "\023", "\024", "\025", "\026", "\033",
|
||||
@ -122,7 +122,7 @@ free_translation_table(struct conv_table *p)
|
||||
* named array rather than a pointer so that it won't share storage
|
||||
* with any other string literal that happens to have the same
|
||||
* characters. */
|
||||
static unsigned char no_str[] = "*";
|
||||
static const unsigned char no_str[] = "*";
|
||||
|
||||
static void
|
||||
new_translation_table(struct conv_table *p)
|
||||
|
Loading…
Reference in New Issue
Block a user