add forgotten 'static' keyword

This commit is contained in:
Vlasta Vesely 2018-06-02 14:22:19 +02:00
parent 855b42ff02
commit f2d74710d6
2 changed files with 2 additions and 2 deletions

View file

@ -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
View file

@ -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"