summaryrefslogtreecommitdiff
path: root/firmware/font.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2011-11-03 23:32:49 +0000
committerBertrik Sikken <bertrik@sikken.nl>2011-11-03 23:32:49 +0000
commite71750b7a398197f3884819d0713107b2ce04f08 (patch)
tree61142002bbd8c8700713bd60ba10b9a974bc2dcc /firmware/font.c
parente4cc3d4b3ab72ad5fc897fd4003a97dcab72c22a (diff)
Make local functions and variables static where possible
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30897 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/font.c')
-rw-r--r--firmware/font.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/font.c b/firmware/font.c
index eb15bb7420..8e576016bd 100644
--- a/firmware/font.c
+++ b/firmware/font.c
@@ -801,8 +801,7 @@ const unsigned char* font_get_bits(struct font* pf, unsigned short char_code)
return bits;
}
-void font_path_to_glyph_path( const char *font_path, char *glyph_path)
-
+static void font_path_to_glyph_path( const char *font_path, char *glyph_path)
{
/* take full file name, cut extension, and add .glyphcache */
strlcpy(glyph_path, font_path, MAX_PATH);