1
0
Fork 0
forked from len0rd/rockbox

RTL: Cosmetic changes, no functional change - Rename constants

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23117 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Tomer Shalev 2009-10-11 20:15:22 +00:00
parent 891c446302
commit d5b076b64a
9 changed files with 14 additions and 21 deletions

View file

@ -109,14 +109,7 @@ int lang_load(const char *filename)
retcode = 3;
}
close(fd);
if (retcode)
{
lang_options = 0;
}
else
{
lang_options = lang_header[3];
}
lang_options = retcode ? 0 : lang_header[3];
return retcode;
}