diff options
| author | Peter D'Hoye <peter.dhoye@gmail.com> | 2007-04-05 21:38:27 +0000 |
|---|---|---|
| committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2007-04-05 21:38:27 +0000 |
| commit | 0db06ce7db751b3ef12e0b322644acbeb788e406 (patch) | |
| tree | 787268f8175c7704a328b9a2d8ae54d86693a490 /apps | |
| parent | 33975fbbda881c11976d2d8ff6c42e0df0518c28 (diff) | |
| download | rockbox-0db06ce7db751b3ef12e0b322644acbeb788e406.zip rockbox-0db06ce7db751b3ef12e0b322644acbeb788e406.tar.gz rockbox-0db06ce7db751b3ef12e0b322644acbeb788e406.tar.bz2 rockbox-0db06ce7db751b3ef12e0b322644acbeb788e406.tar.xz | |
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
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/misc.c b/apps/misc.c index f95abb8..5b008f5 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) */ void check_bootfile(bool do_rolo) { - static int wrtdate = 0; - static int wrttime = 0; + static unsigned short wrtdate = 0; + static unsigned short wrttime = 0; DIR* dir = NULL; struct dirent* entry = NULL; |