From 2783e72a65a329390ef001888b9097b31836e861 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Thu, 27 Jul 2006 22:19:31 +0200 Subject: [PATCH] Fix 2 "static is not at beginning of declaration" warnings. --- dlls/d3d9/vertexdeclaration.c | 2 +- dlls/gdi/tests/font.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/d3d9/vertexdeclaration.c b/dlls/d3d9/vertexdeclaration.c index 1903091517b..c901d9296c1 100644 --- a/dlls/d3d9/vertexdeclaration.c +++ b/dlls/d3d9/vertexdeclaration.c @@ -30,7 +30,7 @@ typedef struct _D3DDECLTYPE_INFO { int typesize; } D3DDECLTYPE_INFO; -D3DDECLTYPE_INFO static const d3d_dtype_lookup[D3DDECLTYPE_UNUSED] = { +static D3DDECLTYPE_INFO const d3d_dtype_lookup[D3DDECLTYPE_UNUSED] = { {D3DDECLTYPE_FLOAT1, 1, sizeof(float)}, {D3DDECLTYPE_FLOAT2, 2, sizeof(float)}, {D3DDECLTYPE_FLOAT3, 3, sizeof(float)}, diff --git a/dlls/gdi/tests/font.c b/dlls/gdi/tests/font.c index 971dcf3e20d..c4ac60d0f5c 100644 --- a/dlls/gdi/tests/font.c +++ b/dlls/gdi/tests/font.c @@ -336,7 +336,7 @@ static void test_GetCharABCWidthsW(void) static void test_text_extents(void) { - const static WCHAR wt[] = {'O','n','e','\n','t','w','o',' ','3',0}; + static const WCHAR wt[] = {'O','n','e','\n','t','w','o',' ','3',0}; LPINT extents; INT i, len, fit1, fit2; LOGFONTA lf;