diff options
| author | Dave Chapman <dave@dchapman.com> | 2007-11-12 22:10:36 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2007-11-12 22:10:36 +0000 |
| commit | a0f3443eabc5813316282e5088ea85b14955672a (patch) | |
| tree | 53c400b4a257c61e3d056e14d6303be4afb7f1ec /apps/plugins | |
| parent | f6ef46b73f628586aef988246d253f3e5154119d (diff) | |
| download | rockbox-a0f3443eabc5813316282e5088ea85b14955672a.zip rockbox-a0f3443eabc5813316282e5088ea85b14955672a.tar.gz rockbox-a0f3443eabc5813316282e5088ea85b14955672a.tar.bz2 rockbox-a0f3443eabc5813316282e5088ea85b14955672a.tar.xz | |
Remove some stray ^Ms
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15605 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/test_codec.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index e629e11..a1f1b29 100644 --- a/apps/plugins/test_codec.c +++ b/apps/plugins/test_codec.c @@ -96,11 +96,11 @@ static char str[MAX_PATH]; /* Our local implementation of the codec API */ static struct codec_api ci; -struct test_track_info {
- struct mp3entry id3; /* TAG metadata */
- size_t filesize; /* File total length */
-};
-
+struct test_track_info { + struct mp3entry id3; /* TAG metadata */ + size_t filesize; /* File total length */ +}; + static struct test_track_info track; static bool taginfo_ready = true; |