diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2011-06-20 19:33:08 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2011-06-20 19:33:08 +0000 |
| commit | ffee46a8b1cdf7c083a4f13c5d696b71930106e8 (patch) | |
| tree | 9f0edb8e6d2ca136bcae6221c3468a55fb432423 /apps | |
| parent | 1a86aab1a26b6efddd843cad8a68cb49c30e36ec (diff) | |
| download | rockbox-ffee46a8b1cdf7c083a4f13c5d696b71930106e8.zip rockbox-ffee46a8b1cdf7c083a4f13c5d696b71930106e8.tar.gz rockbox-ffee46a8b1cdf7c083a4f13c5d696b71930106e8.tar.bz2 rockbox-ffee46a8b1cdf7c083a4f13c5d696b71930106e8.tar.xz | |
Fix yellow. Shouldn't have reordered struct members here.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30031 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/filetypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetypes.h b/apps/filetypes.h index 0b50b45..bde0a3f 100644 --- a/apps/filetypes.h +++ b/apps/filetypes.h @@ -51,8 +51,8 @@ struct filetype { char* extension; int tree_attr; - int voiceclip; enum themable_icons icon; + int voiceclip; }; void tree_get_filetypes(const struct filetype**, int*); |