1
0
Fork 0
forked from len0rd/rockbox

Oops. The function should be static.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15347 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nicolas Pennequin 2007-10-28 15:54:08 +00:00
parent 895eb984ac
commit 9f6719ec56

View file

@ -193,7 +193,7 @@ char* id3_get_num_genre(const unsigned int genre_num)
}
/* True if the string is from the "genres" array */
bool id3_is_genre_string(const char *string)
static bool id3_is_genre_string(const char *string)
{
return ( string >= genres[0] &&
string <= genres[sizeof(genres)/sizeof(char*) - 1] );