diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2006-03-26 12:49:19 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-03-26 12:49:19 +0000 |
| commit | a93e59152a6a1e97f90ca5345ef2d34ac378922a (patch) | |
| tree | 991491a5157d9bb302b10f366a66e27f0b5dc733 /apps | |
| parent | 7c4e0c8730d5b076d4db4206361bc38d5256a23f (diff) | |
| download | rockbox-a93e59152a6a1e97f90ca5345ef2d34ac378922a.zip rockbox-a93e59152a6a1e97f90ca5345ef2d34ac378922a.tar.gz rockbox-a93e59152a6a1e97f90ca5345ef2d34ac378922a.tar.bz2 rockbox-a93e59152a6a1e97f90ca5345ef2d34ac378922a.tar.xz | |
Properly allocating the temporary buffer.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9257 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/tagcache.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index 6c6dd00..db70cd5 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -31,9 +31,7 @@ #include "splash.h" #include "lang.h" #include "tagcache.h" - -/* External reference to the big audiobuffer. */ -extern char *audiobuf, *audiobufend; +#include "buffer.h" /* Tag Cache thread. */ static struct event_queue tagcache_queue; |