diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-11-26 18:08:01 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-11-26 18:08:01 +0000 |
| commit | 4f03a97169e4a468e04943d46baeb9b878668035 (patch) | |
| tree | 8e78516d88034113be19573f34c8ed7253bf8126 /apps/metadata.h | |
| parent | 9393e4c24b4c18d7fe1fa8313008f30370cb726e (diff) | |
| download | rockbox-4f03a97169e4a468e04943d46baeb9b878668035.zip rockbox-4f03a97169e4a468e04943d46baeb9b878668035.tar.gz rockbox-4f03a97169e4a468e04943d46baeb9b878668035.tar.bz2 rockbox-4f03a97169e4a468e04943d46baeb9b878668035.tar.xz | |
Fix red on hwcodec. Forgot to change the macro for it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28673 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/metadata.h')
| -rw-r--r-- | apps/metadata.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/metadata.h b/apps/metadata.h index e2deece..88bf378 100644 --- a/apps/metadata.h +++ b/apps/metadata.h @@ -147,8 +147,8 @@ extern const int afmt_rec_format[AFMT_NUM_CODECS]; #else /* !SWCODEC */ -#define AFMT_ENTRY(label, root_fname, enc_root_fname, ext_list) \ - { label, ext_list } +#define AFMT_ENTRY(label, root_fname, enc_root_fname, func, ext_list) \ + { label, func, ext_list } #endif /* CONFIG_CODEC == SWCODEC */ /** Database of audio formats **/ |