summaryrefslogtreecommitdiff
path: root/firmware/font_cache.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_cache.c
parente4cc3d4b3ab72ad5fc897fd4003a97dcab72c22a (diff)
downloadrockbox-e71750b7a398197f3884819d0713107b2ce04f08.tar.gz
rockbox-e71750b7a398197f3884819d0713107b2ce04f08.zip
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_cache.c')
-rw-r--r--firmware/font_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/font_cache.c b/firmware/font_cache.c
index 24a5faf385..4624b1866e 100644
--- a/firmware/font_cache.c
+++ b/firmware/font_cache.c
@@ -76,7 +76,7 @@ void font_cache_create(
76 * search and new search. Returns a negative of insertion point if 76 * search and new search. Returns a negative of insertion point if
77 * not found. 77 * not found.
78 ************************************************************************/ 78 ************************************************************************/
79int search( struct font_cache* fcache, 79static int search(struct font_cache* fcache,
80 unsigned short char_code, 80 unsigned short char_code,
81 int *p_insertion_point ) 81 int *p_insertion_point )
82{ 82{