From 860b9b1cead825da2dfc109858f8f134f973f62d Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 9 Nov 2009 10:40:33 +0000 Subject: (svn r18028) -Codechange: unglobalise some functions --- src/fontcache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fontcache.cpp') diff --git a/src/fontcache.cpp b/src/fontcache.cpp index 7ccdfb931..43852fa29 100644 --- a/src/fontcache.cpp +++ b/src/fontcache.cpp @@ -902,7 +902,7 @@ static void SetGlyphPtr(FontSize size, WChar key, const GlyphEntry *glyph) _glyph_ptr[size][GB(key, 8, 8)][GB(key, 0, 8)].width = glyph->width; } -void *AllocateFont(size_t size) +static void *AllocateFont(size_t size) { return MallocT(size); } -- cgit v1.2.3-54-g00ecf