# HG changeset patch # User ib # Date 1394303541 0 # Node ID 47c6c14f386bf88b8476686d450dd4dd6b967afc # Parent 2b3ede5f842423a09020a6cf8709fbd16b98430b Cosmetic: Adjust indent. diff -r 2b3ede5f8424 -r 47c6c14f386b gui/win32/skinload.c --- 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