Mercurial > mplayer.hg
changeset 36888:47c6c14f386b
Cosmetic: Adjust indent.
author | ib |
---|---|
date | Sat, 08 Mar 2014 18:32:21 +0000 |
parents | 2b3ede5f8424 |
children | 92b384b99175 |
files | gui/win32/skinload.c |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/win32/skinload.c Sat Mar 08 18:31:29 2014 +0000 +++ b/gui/win32/skinload.c Sat Mar 08 18:32:21 2014 +0000 @@ -660,13 +660,13 @@ { int id = 0; char temp[MAX_LINESIZE]; - int base = counttonextchar(desc, '=') + 1; - findnextstring(temp, desc, &base); - id = skin->fontcount; - (skin->fontcount)++; - skin->fonts = realloc(skin->fonts, sizeof(font_t *) * skin->fontcount); - skin->fonts[id]=calloc(1, sizeof(font_t)); - skin->fonts[id]->name = strdup(temp); + int base = counttonextchar(desc, '=') + 1; + findnextstring(temp, desc, &base); + id = skin->fontcount; + (skin->fontcount)++; + skin->fonts = realloc(skin->fonts, sizeof(font_t *) * skin->fontcount); + skin->fonts[id]=calloc(1, sizeof(font_t)); + skin->fonts[id]->name = strdup(temp); mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [FONT] name \"%s\"\n", skin->fonts[id]->name); } else