diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-03-17 09:54:28 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-03-17 09:54:28 +0000 |
| commit | f68362ad6ffef77261e2f64cedc08a023c721ae7 (patch) | |
| tree | 455e19964b6efb605374ea192b97d8eed0307c97 /apps/codecs/spc.c | |
| parent | 75e1fd718f4d354afbee4cf5251e03d5101c0daf (diff) | |
| download | rockbox-f68362ad6ffef77261e2f64cedc08a023c721ae7.zip rockbox-f68362ad6ffef77261e2f64cedc08a023c721ae7.tar.gz rockbox-f68362ad6ffef77261e2f64cedc08a023c721ae7.tar.bz2 rockbox-f68362ad6ffef77261e2f64cedc08a023c721ae7.tar.xz | |
Fix simulator builds, and some debugf() format strings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12817 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/spc.c')
| -rw-r--r-- | apps/codecs/spc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/spc.c b/apps/codecs/spc.c index 1cf2009..61376a5 100644 --- a/apps/codecs/spc.c +++ b/apps/codecs/spc.c @@ -759,7 +759,7 @@ static int play_track( void ) if (ci->seek_time) { int curtime = sampleswritten*1000LL/sample_rate; - DEBUGF("seek to %d\ncurrently at %d\n",ci->seek_time,curtime); + DEBUGF("seek to %ld\ncurrently at %d\n",ci->seek_time,curtime); if (ci->seek_time < curtime) { DEBUGF("seek backwards = reset\n"); ci->seek_complete(); |