gdi32: Remove unused return value of init_system_links().

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-03-12 21:19:19 +01:00 committed by Alexandre Julliard
parent 60816b9f8a
commit fe7dcc2908
1 changed files with 1 additions and 3 deletions

View File

@ -2568,10 +2568,9 @@ static void populate_system_links(const WCHAR *name, const WCHAR *const *values)
/*************************************************************
* init_system_links
*/
static BOOL init_system_links(void)
static void init_system_links(void)
{
HKEY hkey;
BOOL ret = FALSE;
DWORD type, max_val, max_data, val_len, data_len, index;
WCHAR *value, *data;
WCHAR *entry, *next;
@ -2717,7 +2716,6 @@ skip_internal:
}
}
list_add_tail(&system_links, &system_font_link->entry);
return ret;
}
static BOOL ReadFontDir(const char *dirname, BOOL external_fonts)