summaryrefslogtreecommitdiffstats
path: root/apps/metadata
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2011-08-11 19:04:28 +0000
committerBertrik Sikken <bertrik@sikken.nl>2011-08-11 19:04:28 +0000
commitb1279498609808cf65a7054ae7085b4885a33e66 (patch)
tree65b811724afd1237bbaddf16d503134d1048196f /apps/metadata
parent39e4987ea5c2326249583b53afcd9038d8209ba9 (diff)
downloadrockbox-b1279498609808cf65a7054ae7085b4885a33e66.tar.gz
rockbox-b1279498609808cf65a7054ae7085b4885a33e66.zip
libgme: make local functions static where possible
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30280 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/metadata')
-rw-r--r--apps/metadata/ay.c2
-rw-r--r--apps/metadata/gbs.c2
-rw-r--r--apps/metadata/kss.c2
-rw-r--r--apps/metadata/sgc.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/apps/metadata/ay.c b/apps/metadata/ay.c
index 8b737a7eba..50b5ac29ae 100644
--- a/apps/metadata/ay.c
+++ b/apps/metadata/ay.c
@@ -108,7 +108,7 @@ static void copy_ay_fields( struct file_t const* file, struct mp3entry* id3, int
if (tmp) id3->comment = tmp;
}
-bool parse_ay_header(int fd, struct mp3entry *id3)
+static bool parse_ay_header(int fd, struct mp3entry *id3)
{
/* Use the trackname part of the id3 structure as a temporary buffer */
unsigned char* buf = (unsigned char *)id3->id3v2buf;
diff --git a/apps/metadata/gbs.c b/apps/metadata/gbs.c
index 796db5932f..68f2b2a393 100644
--- a/apps/metadata/gbs.c
+++ b/apps/metadata/gbs.c
@@ -10,7 +10,7 @@
#include "metadata_parsers.h"
#include "rbunicode.h"
-bool parse_gbs_header(int fd, struct mp3entry* id3)
+static bool parse_gbs_header(int fd, struct mp3entry* id3)
{
/* Use the trackname part of the id3 structure as a temporary buffer */
unsigned char* buf = (unsigned char *)id3->path;
diff --git a/apps/metadata/kss.c b/apps/metadata/kss.c
index ecb59b8353..2ae0cf50b0 100644
--- a/apps/metadata/kss.c
+++ b/apps/metadata/kss.c
@@ -10,7 +10,7 @@
#include "metadata_parsers.h"
#include "rbunicode.h"
-bool parse_kss_header(int fd, struct mp3entry* id3)
+static bool parse_kss_header(int fd, struct mp3entry* id3)
{
/* Use the trackname part of the id3 structure as a temporary buffer */
unsigned char* buf = (unsigned char *)id3->path;
diff --git a/apps/metadata/sgc.c b/apps/metadata/sgc.c
index 9e16de2c76..78cacb9b1b 100644
--- a/apps/metadata/sgc.c
+++ b/apps/metadata/sgc.c
@@ -10,7 +10,7 @@
#include "metadata_parsers.h"
#include "rbunicode.h"
-bool parse_sgc_header(int fd, struct mp3entry* id3)
+static bool parse_sgc_header(int fd, struct mp3entry* id3)
{
/* Use the trackname part of the id3 structure as a temporary buffer */
unsigned char* buf = (unsigned char *)id3->path;