summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter D'Hoye <peter.dhoye@gmail.com>2007-04-05 21:38:27 +0000
committerPeter D'Hoye <peter.dhoye@gmail.com>2007-04-05 21:38:27 +0000
commit0db06ce7db751b3ef12e0b322644acbeb788e406 (patch)
tree787268f8175c7704a328b9a2d8ae54d86693a490
parent33975fbbda881c11976d2d8ff6c42e0df0518c28 (diff)
downloadrockbox-0db06ce7db751b3ef12e0b322644acbeb788e406.tar.gz
rockbox-0db06ce7db751b3ef12e0b322644acbeb788e406.zip
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
-rw-r--r--apps/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/misc.c b/apps/misc.c
index f95abb862f..5b008f525c 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -885,8 +885,8 @@ int get_replaygain_mode(bool have_track_gain, bool have_album_gain)
885*/ 885*/
886void check_bootfile(bool do_rolo) 886void check_bootfile(bool do_rolo)
887{ 887{
888 static int wrtdate = 0; 888 static unsigned short wrtdate = 0;
889 static int wrttime = 0; 889 static unsigned short wrttime = 0;
890 DIR* dir = NULL; 890 DIR* dir = NULL;
891 struct dirent* entry = NULL; 891 struct dirent* entry = NULL;
892 892