diff options
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; |