Commit 1f6d078e authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Assorted spelling fixes.

parent fd84b7d0
...@@ -71,7 +71,7 @@ hlsl_prog: /* empty */ ...@@ -71,7 +71,7 @@ hlsl_prog: /* empty */
preproc_directive: PRE_LINE STRING preproc_directive: PRE_LINE STRING
{ {
TRACE("Updating line informations to file %s, line %u\n", debugstr_a($2), $1); TRACE("Updating line information to file %s, line %u\n", debugstr_a($2), $1);
hlsl_ctx.line_no = $1 - 1; hlsl_ctx.line_no = $1 - 1;
d3dcompiler_free(hlsl_ctx.source_file); d3dcompiler_free(hlsl_ctx.source_file);
hlsl_ctx.source_file = $2; hlsl_ctx.source_file = $2;
......
...@@ -214,7 +214,7 @@ static void test_MeshBuilder(void) ...@@ -214,7 +214,7 @@ static void test_MeshBuilder(void)
size = sizeof(name); size = sizeof(name);
hr = IDirect3DRMMeshBuilder_GetName(pMeshBuilder, &size, name); hr = IDirect3DRMMeshBuilder_GetName(pMeshBuilder, &size, name);
ok(hr == D3DRM_OK, "IDirect3DRMMeshBuilder_GetName returned hr = %x\n", hr); ok(hr == D3DRM_OK, "IDirect3DRMMeshBuilder_GetName returned hr = %x\n", hr);
ok(!strcmp(name, "Object"), "Retreived name '%s' instead of 'Object'\n", name); ok(!strcmp(name, "Object"), "Retrieved name '%s' instead of 'Object'\n", name);
size = strlen("Object"); /* No space for null character */ size = strlen("Object"); /* No space for null character */
hr = IDirect3DRMMeshBuilder_GetName(pMeshBuilder, &size, name); hr = IDirect3DRMMeshBuilder_GetName(pMeshBuilder, &size, name);
ok(hr == E_INVALIDARG, "IDirect3DRMMeshBuilder_GetName returned hr = %x\n", hr); ok(hr == E_INVALIDARG, "IDirect3DRMMeshBuilder_GetName returned hr = %x\n", hr);
...@@ -229,7 +229,7 @@ static void test_MeshBuilder(void) ...@@ -229,7 +229,7 @@ static void test_MeshBuilder(void)
size = sizeof(name); size = sizeof(name);
hr = IDirect3DRMMeshBuilder_GetName(pMeshBuilder, &size, name); hr = IDirect3DRMMeshBuilder_GetName(pMeshBuilder, &size, name);
ok(hr == D3DRM_OK, "IDirect3DRMMeshBuilder_GetName returned hr = %x\n", hr); ok(hr == D3DRM_OK, "IDirect3DRMMeshBuilder_GetName returned hr = %x\n", hr);
ok(!strcmp(name, ""), "Retreived name '%s' instead of ''\n", name); ok(!strcmp(name, ""), "Retrieved name '%s' instead of ''\n", name);
val = IDirect3DRMMeshBuilder_GetVertexCount(pMeshBuilder); val = IDirect3DRMMeshBuilder_GetVertexCount(pMeshBuilder);
ok(val == 4, "Wrong number of vertices %d (must be 4)\n", val); ok(val == 4, "Wrong number of vertices %d (must be 4)\n", val);
......
...@@ -86,8 +86,8 @@ static inline HDDEDATA Dde_OnRequest(UINT uFmt, HCONV hconv, HSZ hszTopic, ...@@ -86,8 +86,8 @@ static inline HDDEDATA Dde_OnRequest(UINT uFmt, HCONV hconv, HSZ hszTopic,
{ {
static BYTE groups_data[] = "\r\n"; static BYTE groups_data[] = "\r\n";
FIXME( "returning empty groups list\n" ); FIXME( "returning empty groups list\n" );
/* this is an workaround for an app wich expect some data /* This is a workaround for an application which expects some data
* and cant handle NULL. */ * and cannot handle NULL. */
return DdeCreateDataHandle( dwDDEInst, groups_data, sizeof(groups_data), 0, hszProgmanService, uFmt, 0 ); return DdeCreateDataHandle( dwDDEInst, groups_data, sizeof(groups_data), 0, hszProgmanService, uFmt, 0 );
} }
FIXME( "%u %p %s %s: stub\n", uFmt, hconv, debugstr_hsz(hszTopic), debugstr_hsz(hszItem) ); FIXME( "%u %p %s %s: stub\n", uFmt, hconv, debugstr_hsz(hszTopic), debugstr_hsz(hszItem) );
......
...@@ -519,7 +519,7 @@ static char* UNIXFS_build_shitemid(char *pszUnixPath, BOOL bMustExist, WIN32_FIN ...@@ -519,7 +519,7 @@ static char* UNIXFS_build_shitemid(char *pszUnixPath, BOOL bMustExist, WIN32_FIN
FileStructW *pFileStructW; FileStructW *pFileStructW;
WORD uOffsetW, *pOffsetW; WORD uOffsetW, *pOffsetW;
TRACE("(pszUnixPath=%s, bMustExsist=%s, pFindData=%p, pIDL=%p)\n", TRACE("(pszUnixPath=%s, bMustExist=%s, pFindData=%p, pIDL=%p)\n",
debugstr_a(pszUnixPath), bMustExist ? "T" : "F", pFindData, pIDL); debugstr_a(pszUnixPath), bMustExist ? "T" : "F", pFindData, pIDL);
if (pFindData) if (pFindData)
......
...@@ -488,7 +488,7 @@ static DWORD WINAPI QTSplitter_loading_thread(LPVOID data) ...@@ -488,7 +488,7 @@ static DWORD WINAPI QTSplitter_loading_thread(LPVOID data)
/* according to QA1469 a movie has to be fully loaded before we /* according to QA1469 a movie has to be fully loaded before we
can reliably start the Extraction session. can reliably start the Extraction session.
If loaded earlier then we only get an extraction session for If loaded earlier, then we only get an extraction session for
the part of the movie that is loaded at that time. the part of the movie that is loaded at that time.
We are trying to load as much of the movie as we can before we We are trying to load as much of the movie as we can before we
......
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