summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/ogg.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/metadata/ogg.c')
-rw-r--r--lib/rbcodec/metadata/ogg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbcodec/metadata/ogg.c b/lib/rbcodec/metadata/ogg.c
index 3a3cb29998..f3231c6f8a 100644
--- a/lib/rbcodec/metadata/ogg.c
+++ b/lib/rbcodec/metadata/ogg.c
@@ -23,8 +23,8 @@
23#include <stdlib.h> 23#include <stdlib.h>
24#include <ctype.h> 24#include <ctype.h>
25#include <inttypes.h> 25#include <inttypes.h>
26#include "platform.h"
26 27
27#include "system.h"
28#include "metadata.h" 28#include "metadata.h"
29#include "metadata_common.h" 29#include "metadata_common.h"
30#include "metadata_parsers.h" 30#include "metadata_parsers.h"
@@ -68,7 +68,7 @@ bool get_ogg_metadata(int fd, struct mp3entry* id3)
68 { 68 {
69 return false; 69 return false;
70 } 70 }
71 71
72 /* All Ogg streams start with OggS */ 72 /* All Ogg streams start with OggS */
73 if (memcmp(buf, "OggS", 4) != 0) 73 if (memcmp(buf, "OggS", 4) != 0)
74 { 74 {