From 00e0d1510bf50851d2f08e846d0325e36ecb2ae2 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 4 Dec 2008 12:46:52 +0100 Subject: [PATCH] d3d8: Make a function static. --- dlls/d3d8/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3d8/device.c b/dlls/d3d8/device.c index b607358e230..f9a0150b4fa 100644 --- a/dlls/d3d8/device.c +++ b/dlls/d3d8/device.c @@ -1606,7 +1606,7 @@ static HRESULT WINAPI IDirect3DDevice8Impl_CreateVertexShader(LPDIRECT3DDEVICE8 return hrc; } -IWineD3DVertexDeclaration *IDirect3DDevice8Impl_FindDecl(IDirect3DDevice8Impl *This, DWORD fvf) +static IWineD3DVertexDeclaration *IDirect3DDevice8Impl_FindDecl(IDirect3DDevice8Impl *This, DWORD fvf) { HRESULT hr; IWineD3DVertexDeclaration* pDecl = NULL;