gdi32: Remove some useless returns.

This commit is contained in:
Nikolay Sivov 2014-12-15 08:56:26 +03:00 committed by Alexandre Julliard
parent 0bfe8b441a
commit 88202b3d9b
1 changed files with 0 additions and 5 deletions

View File

@ -995,7 +995,6 @@ static void DumpSubstList(void)
TRACE("%s -> %s\n", debugstr_w(psub->from.name), TRACE("%s -> %s\n", debugstr_w(psub->from.name),
debugstr_w(psub->to.name)); debugstr_w(psub->to.name));
} }
return;
} }
static LPWSTR strdupW(LPCWSTR p) static LPWSTR strdupW(LPCWSTR p)
@ -2215,7 +2214,6 @@ static void DumpFontList(void)
TRACE("\n"); TRACE("\n");
} }
} }
return;
} }
/*********************************************************** /***********************************************************
@ -3011,7 +3009,6 @@ static void update_reg_entries(void)
if(external_key) RegCloseKey(external_key); if(external_key) RegCloseKey(external_key);
if(win9x_key) RegCloseKey(win9x_key); if(win9x_key) RegCloseKey(win9x_key);
if(winnt_key) RegCloseKey(winnt_key); if(winnt_key) RegCloseKey(winnt_key);
return;
} }
static void delete_external_font_keys(void) static void delete_external_font_keys(void)
@ -4658,7 +4655,6 @@ static void calc_hash(FONT_DESC *pfd)
} }
hash ^= !pfd->can_use_bitmap; hash ^= !pfd->can_use_bitmap;
pfd->hash = hash; pfd->hash = hash;
return;
} }
static GdiFont *find_in_cache(HFONT hfont, const LOGFONTW *plf, const FMAT2 *pmat, BOOL can_use_bitmap) static GdiFont *find_in_cache(HFONT hfont, const LOGFONTW *plf, const FMAT2 *pmat, BOOL can_use_bitmap)
@ -5839,7 +5835,6 @@ static void FTVectorToPOINTFX(FT_Vector *vec, POINTFX *pt)
pt->y.value = vec->y >> 6; pt->y.value = vec->y >> 6;
pt->y.fract = (vec->y & 0x3f) << 10; pt->y.fract = (vec->y & 0x3f) << 10;
pt->y.fract |= ((pt->y.fract >> 6) | (pt->y.fract >> 12)); pt->y.fract |= ((pt->y.fract >> 6) | (pt->y.fract >> 12));
return;
} }
/*************************************************** /***************************************************