Assorted spelling fixes.

This commit is contained in:
Francois Gouget 2013-01-05 16:17:18 +01:00 committed by Alexandre Julliard
parent 6ada0608bf
commit f963f93964
10 changed files with 11 additions and 11 deletions

View File

@ -189,7 +189,7 @@ static const char *trust_status_to_str(DWORD status)
"\n\tbad name constraints");
if (status & CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT)
pos += snprintf(buf + pos, sizeof(buf) - pos,
"\n\tunsuported name constraint");
"\n\tunsupported name constraint");
if (status & CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT)
pos += snprintf(buf + pos, sizeof(buf) - pos,
"\n\tundefined name constraint");

View File

@ -642,7 +642,7 @@ static void test_fail(IDirect3DDevice9 *device, IDirect3DVertexBuffer9 *qquad_ge
"function names\n");
ok(errors != NULL, "No errors returned for a shader with invalid variable and function "
"names\n");
ok(compiled == NULL, "A shader blob was returend for a shader with invalid variable and "
ok(compiled == NULL, "A shader blob was returned for a shader with invalid variable and "
"function names\n");
IUnknown_Release(errors);

View File

@ -1591,7 +1591,7 @@ static void test_D3DXCreateVolumeTextureFromFileInMemory(IDirect3DDevice9 *devic
ok(levelcount == 3, "GetLevelCount returned %u, expected 3\n", levelcount);
hr = IDirect3DVolumeTexture9_GetLevelDesc(volume_texture, 0, &volume_desc);
ok(hr == D3D_OK, "GetLevelDesc returend %#x, expected %#x\n", hr, D3D_OK);
ok(hr == D3D_OK, "GetLevelDesc returned %#x, expected %#x\n", hr, D3D_OK);
ok(volume_desc.Width == 4, "Got width %u, expected 4\n", volume_desc.Width);
ok(volume_desc.Height == 4, "Got height %u, expected 4\n", volume_desc.Height);
ok(volume_desc.Depth == 2, "Got depth %u, expected 2\n", volume_desc.Depth);

View File

@ -1248,7 +1248,7 @@ static nsresult NSAPI nsAsyncVerifyRedirectCallback_QueryInterface(nsIAsyncVerif
nsRedirectCallback *This = impl_from_nsIAsyncVerifyRedirectCallback(iface);
if(IsEqualGUID(&IID_nsISupports, riid)) {
TRACE("(%p)->(IID_nsISuports %p)\n", This, result);
TRACE("(%p)->(IID_nsISupports %p)\n", This, result);
*result = &This->nsIAsyncVerifyRedirectCallback_iface;
}else if(IsEqualGUID(&IID_nsIAsyncVerifyRedirectCallback, riid)) {
TRACE("(%p)->(IID_nsIAsyncVerifyRedirectCallback %p)\n", This, result);

View File

@ -707,7 +707,7 @@ static void test_CoRegisterPSClsid(void)
CLSID clsid;
hr = CoRegisterPSClsid(&IID_IWineTest, &CLSID_WineTestPSFactoryBuffer);
ok(hr == CO_E_NOTINITIALIZED, "CoRegisterPSClsid should have returened CO_E_NOTINITIALIZED instead of 0x%08x\n", hr);
ok(hr == CO_E_NOTINITIALIZED, "CoRegisterPSClsid should have returned CO_E_NOTINITIALIZED instead of 0x%08x\n", hr);
pCoInitializeEx(NULL, COINIT_APARTMENTTHREADED);

View File

@ -1860,7 +1860,7 @@ static void test_ScriptGetFontProperties(HDC hdc)
static const WCHAR invalids[] = {0x0020, 0x200B, 0xF71B};
/* U+0020: numeric space
U+200B: zero width space
U+F71B: unkown, found by black box testing */
U+F71B: unknown, found by black box testing */
BOOL is_terminal, is_arial, is_times_new_roman, is_arabic = (system_lang_id == LANG_ARABIC);
/* Some sanity checks for ScriptGetFontProperties */

View File

@ -107,7 +107,7 @@ typedef struct _WINMM_Device {
BOOL stopped;
DWORD loop_counter;
UINT32 bytes_per_frame, samples_per_sec, ofs_bytes, played_frames;
UINT32 remainder_frames; /* header chunk frames already played when a device switch occured */
UINT32 remainder_frames; /* header chunk frames already played when a device switch occurred */
/* stored in frames of sample rate, *not* AC::GetFrequency */
UINT64 last_clock_pos;

View File

@ -366,7 +366,7 @@ static HRESULT readerinput_growraw(xmlreaderinput *readerinput)
ULONG read;
HRESULT hr;
/* always try to get aligned to 4 bytes, so the only case we can get partialy read characters is
/* always try to get aligned to 4 bytes, so the only case we can get partially read characters is
variable width encodings like UTF-8 */
len = (len + 3) & ~3;
/* try to use allocated space or grow */

View File

@ -3778,7 +3778,7 @@ static int WCMD_handleExpression(WCHAR **expr, int *ret, int depth)
WCHAR *nextpos;
/* Cannot have an expression with var/number twice, without an operator
inbetween, nor or number following a half constructed << or >> operator */
in-between, nor or number following a half constructed << or >> operator */
if (lastwasnumber || foundhalf) {
rc = WCMD_NOOPERATOR;
goto exprerrorreturn;

View File

@ -1220,7 +1220,7 @@ set WINE_foo=2
set /a WINE_bar=WINE_foo=7
call :checkenvvars WINE_foo 7 WINE_bar 7
echo ----- equal precedence on stack
rem Unary - dont reduce if precedence is equal
rem Unary - don't reduce if precedence is equal
set /a WINE_foo=!!1
call :checkenvvars WINE_foo 1
set /a WINE_foo=!!0
@ -1262,7 +1262,7 @@ set /a WINE_foo=10-5+2
call :checkenvvars WINE_foo 7
set /a WINE_foo=1^<^<4^>^>1
call :checkenvvars WINE_foo 8
rem Assignment - dont reduce if precedence is equal
rem Assignment - don't reduce if precedence is equal
set /a WINE_foo=5
set /a WINE_bar=WINE_foo=6
call :checkenvvars WINE_foo 6 WINE_bar 6