Assorted spelling fixes.

This commit is contained in:
Francois Gouget 2005-08-17 09:56:24 +00:00 committed by Alexandre Julliard
parent 80cbb93163
commit fae73a1090
4 changed files with 5 additions and 6 deletions

View File

@ -415,7 +415,7 @@ static int strCmp(const char* s1, const char* s2, BOOL sensitive)
ok(strCmp(result, expect, 0) == 0, "%s:%s expected '%s', got '%s'\n", sect, key, expect, result); \ ok(strCmp(result, expect, 0) == 0, "%s:%s expected '%s', got '%s'\n", sect, key, expect, result); \
} while (0) } while (0)
/* using !expect insures that the test will fail if the sect/key isn't present /* using !expect ensures that the test will fail if the sect/key isn't present
* in result file * in result file
*/ */
#define okChildInt(sect, key, expect) \ #define okChildInt(sect, key, expect) \

View File

@ -655,7 +655,7 @@ static xmlDocPtr doparse( char *ptr, int len )
{ {
#ifdef HAVE_XMLREADMEMORY #ifdef HAVE_XMLREADMEMORY
/* /*
* use xmlReadMemory if possible so we can supress * use xmlReadMemory if possible so we can suppress
* writing errors to stderr * writing errors to stderr
*/ */
return xmlReadMemory( ptr, len, NULL, NULL, return xmlReadMemory( ptr, len, NULL, NULL,

View File

@ -307,15 +307,14 @@ static void testQuerySecurityPackageInfo(void)
"Return value of FreeContextBuffer() shouldn't be %s\n", "Return value of FreeContextBuffer() shouldn't be %s\n",
getSecStatusError(sec_status) ); getSecStatusError(sec_status) );
/* Test with non-existing package, test should fail */ /* Test with a nonexistent package, test should fail */
lstrcpy(sec_pkg_name, "Winetest"); lstrcpy(sec_pkg_name, "Winetest");
sec_status = QuerySecurityPackageInfo( sec_pkg_name, &pkg_info); sec_status = QuerySecurityPackageInfo( sec_pkg_name, &pkg_info);
ok( sec_status != SEC_E_OK, ok( sec_status != SEC_E_OK,
"Return value of QuerySecurityPackageInfo() should not be %s for \ "Return value of QuerySecurityPackageInfo() should not be %s for a nonexistent package\n", getSecStatusError(SEC_E_OK));
a non-existant package\n", getSecStatusError(SEC_E_OK));
sec_status = FreeContextBuffer(&pkg_info); sec_status = FreeContextBuffer(&pkg_info);

View File

@ -1585,7 +1585,7 @@ void inline drawPrimitiveUploadTextures(IWineD3DDeviceImpl* This) {
* if there is a texture bound to that unit then.. * if there is a texture bound to that unit then..
* disable all textures types on that unit * disable all textures types on that unit
* enable and bind the texture that is bound to that unit. * enable and bind the texture that is bound to that unit.
* otherwise dissable all texture types on that unit. * otherwise disable all texture types on that unit.
**/ **/
/* upload the textures */ /* upload the textures */
for (i = 0; i< GL_LIMITS(textures); ++i) { for (i = 0; i< GL_LIMITS(textures); ++i) {