add forgotten 'static' keyword
This commit is contained in:
parent
855b42ff02
commit
f2d74710d6
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ static const struct encoder_tuple table[] = {
|
|||
{NULL, NULL}
|
||||
};
|
||||
|
||||
const struct encoder_tuple *find_tuple(const char *text)
|
||||
static const struct encoder_tuple *find_tuple(const char *text)
|
||||
{
|
||||
const struct encoder_tuple *walk = table;
|
||||
|
||||
|
|
2
main.c
2
main.c
|
@ -14,7 +14,7 @@
|
|||
#define FLAG_ENCODE 1 << 2
|
||||
|
||||
|
||||
const char *usage_str =
|
||||
static const char *usage_str =
|
||||
"iast, a sanskrit transliteration helper.\n"
|
||||
"\n"
|
||||
"usage:\n"
|
||||
|
|
Loading…
Add table
Reference in a new issue