d3drm/tests: Use better name for test function and make it static (spotted by Stefan Dosinger).

This commit is contained in:
Christian Costa 2010-02-03 08:38:41 +01:00 committed by Alexandre Julliard
parent f1b30eb49d
commit 3d361e6412
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ char data_bad[] =
"1; 2; 3;\n"
"}\n";
void Test(void)
static void MeshBuilderTest(void)
{
HRESULT hr;
LPDIRECT3DRM pD3DRM;
@ -95,7 +95,7 @@ START_TEST(d3drm)
if (!InitFunctionPtrs())
return;
Test();
MeshBuilderTest();
FreeLibrary(d3drm_handle);
}