1
0
Fork 0
forked from len0rd/rockbox

Oops again, use correct variable types for storing file date and time

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13039 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Peter D'Hoye 2007-04-05 21:38:27 +00:00
parent 33975fbbda
commit 0db06ce7db

View file

@ -885,8 +885,8 @@ int get_replaygain_mode(bool have_track_gain, bool have_album_gain)
*/ */
void check_bootfile(bool do_rolo) void check_bootfile(bool do_rolo)
{ {
static int wrtdate = 0; static unsigned short wrtdate = 0;
static int wrttime = 0; static unsigned short wrttime = 0;
DIR* dir = NULL; DIR* dir = NULL;
struct dirent* entry = NULL; struct dirent* entry = NULL;