Silence MSVC warnings

This commit is contained in:
twinaphex 2015-06-28 19:14:27 +02:00
parent 6aa6e8c1d9
commit f31c1733d9
4 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,7 @@ const char *menu_hash_to_str_eo(uint32_t hash)
{
switch (hash)
{
case 0:
default:
break;
}
@ -34,6 +35,7 @@ int menu_hash_get_help_eo(uint32_t hash, char *s, size_t len)
{
switch (hash)
{
case 0:
default:
return -1;
}

View File

@ -23,6 +23,7 @@ const char *menu_hash_to_str_es(uint32_t hash)
{
switch (hash)
{
case 0:
default:
break;
}
@ -34,6 +35,7 @@ int menu_hash_get_help_es(uint32_t hash, char *s, size_t len)
{
switch (hash)
{
case 0:
default:
return -1;
}

View File

@ -848,6 +848,7 @@ int menu_hash_get_help_fr(uint32_t hash, char *s, size_t len)
switch (hash)
{
case 0:
default:
return -1;
}

View File

@ -850,6 +850,7 @@ int menu_hash_get_help_nl(uint32_t hash, char *s, size_t len)
{
switch (hash)
{
case 0:
default:
strlcpy(s, "Geen informatie beschikbaar.", len);
return -1;