Commit 2783e72a authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

Fix 2 "static is not at beginning of declaration" warnings.

parent b222f1bc
......@@ -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)},
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment