From e305560f13c3c67b048dc3889c7797eae2e345c4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 7 Jan 2019 00:06:58 +1100 Subject: Cleanup: add trailing commas to structs Needed for clang formatting to workaround bug/limit, see: T53211 --- source/blender/blenfont/intern/blf_glyph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenfont') diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c index 8fcba1fc2af..d223afa2ede 100644 --- a/source/blender/blenfont/intern/blf_glyph.c +++ b/source/blender/blenfont/intern/blf_glyph.c @@ -100,7 +100,7 @@ KerningCacheBLF *blf_kerning_cache_new(FontBLF *font) /* Cannot fail since it has been added just before. */ GlyphBLF *g_prev = blf_glyph_search(font->glyph_cache, j); - FT_Vector delta = {.x = 0, .y = 0}; + FT_Vector delta = { .x = 0, .y = 0, }; if (FT_Get_Kerning(font->face, g_prev->idx, g->idx, kc->mode, &delta) == 0) { kc->table[i][j] = (int)delta.x >> 6; } -- cgit v1.2.3