From: John Hodge Date: Thu, 24 Mar 2011 08:04:37 +0000 (+0800) Subject: Usermode/axwin2 - Compile fixes for clang X-Git-Tag: rel0.10~139 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=242c4abde7ae20df10f0e7b6e3774312c1f26910;p=tpg%2Facess2.git Usermode/axwin2 - Compile fixes for clang --- diff --git a/Usermode/Applications/axwin2_src/WM/video_text.c b/Usermode/Applications/axwin2_src/WM/video_text.c index 7cf10493..b7764248 100644 --- a/Usermode/Applications/axwin2_src/WM/video_text.c +++ b/Usermode/Applications/axwin2_src/WM/video_text.c @@ -50,7 +50,7 @@ tGlyph *_SystemFont_CacheGlyph(tFont *Font, uint32_t Codepoint); // === GLOBALS === tFont gSystemFont = { - CacheGlyph: _SystemFont_CacheGlyph + .CacheGlyph = _SystemFont_CacheGlyph }; // === CODE === diff --git a/Usermode/Applications/axwin2_src/WM/wm.c b/Usermode/Applications/axwin2_src/WM/wm.c index f107ae74..e2b0d231 100644 --- a/Usermode/Applications/axwin2_src/WM/wm.c +++ b/Usermode/Applications/axwin2_src/WM/wm.c @@ -26,7 +26,7 @@ void WM_Update(void); // === GLOBALS === tElement gWM_RootElement = { - DebugName: "ROOT" + .DebugName = "ROOT" }; struct { void (*Init)(tElement *This);