Assorted spelling fixes.
This commit is contained in:
parent
727a596e9b
commit
dff5004bc0
|
@ -161,8 +161,8 @@ static void ok_sequence(const struct message *expected, const char *context)
|
|||
expected++;
|
||||
actual++;
|
||||
}
|
||||
ok(!expected->procnum, "Recieved less messages then expected\n");
|
||||
ok(!actual->procnum, "Recieved more messages then expected\n");
|
||||
ok(!expected->procnum, "Received fewer messages than expected\n");
|
||||
ok(!actual->procnum, "Received more messages than expected\n");
|
||||
flush_sequence();
|
||||
}
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ static void test_mktime()
|
|||
local_time = mktime(&my_tm);
|
||||
ok(((DWORD)local_time == SECSPERDAY), "mktime returned 0x%08lx\n",(DWORD)local_time);
|
||||
|
||||
/* TEST that we are indepentant from the TZ variable */
|
||||
/* TEST that we are independent from the TZ variable */
|
||||
/*Argh, msvcrt doesn't have setenv() */
|
||||
_snprintf(TZ_env,255,"TZ=%s",(getenv("TZ")?getenv("TZ"):""));
|
||||
putenv("TZ=GMT");
|
||||
|
|
|
@ -84,7 +84,7 @@ static DWORD AVIDec_SendSampleData(AVIDecImpl* This, LPBYTE data, DWORD size)
|
|||
|
||||
hr = IPin_ConnectionMediaType(This->ppPins[0], &amt);
|
||||
if (FAILED(hr)) {
|
||||
ERR("Unable to retreive media type\n");
|
||||
ERR("Unable to retrieve media type\n");
|
||||
goto error;
|
||||
}
|
||||
format = (VIDEOINFOHEADER*)amt.pbFormat;
|
||||
|
@ -121,7 +121,7 @@ static DWORD AVIDec_SendSampleData(AVIDecImpl* This, LPBYTE data, DWORD size)
|
|||
|
||||
res = ICDecompress(This->hvid, 0, &format->bmiHeader, data, &bi, pbDstStream);
|
||||
if (res != ICERR_OK)
|
||||
ERR("Error occured during the decompression (%lx)\n", res);
|
||||
ERR("Error occurred during the decompression (%lx)\n", res);
|
||||
|
||||
hr = OutputPin_SendSample((OutputPin*)This->ppPins[1], pSample);
|
||||
if (hr != S_OK && hr != VFW_E_NOT_CONNECTED) {
|
||||
|
|
|
@ -111,7 +111,7 @@ static HRESULT DSoundRender_CreateSoundBuffer(IBaseFilter * iface)
|
|||
|
||||
hr = IPin_ConnectionMediaType(This->ppPins[0], &amt);
|
||||
if (FAILED(hr)) {
|
||||
ERR("Unable to retreive media type\n");
|
||||
ERR("Unable to retrieve media type\n");
|
||||
return hr;
|
||||
}
|
||||
|
||||
|
|
|
@ -181,7 +181,7 @@ static DWORD VideoRenderer_SendSampleData(VideoRendererImpl* This, LPBYTE data,
|
|||
sdesc.dwSize = sizeof(sdesc);
|
||||
hr = IPin_ConnectionMediaType(This->ppPins[0], &amt);
|
||||
if (FAILED(hr)) {
|
||||
ERR("Unable to retreive media type\n");
|
||||
ERR("Unable to retrieve media type\n");
|
||||
return hr;
|
||||
}
|
||||
format = (VIDEOINFOHEADER*)amt.pbFormat;
|
||||
|
|
|
@ -323,7 +323,7 @@ static void wave_in_test_device(int device)
|
|||
WAVE_MAPPED, &capsA);
|
||||
}
|
||||
|
||||
/* Try a PCMWAVEFORMAT aligned next to an unaccessable page for bounds
|
||||
/* Try a PCMWAVEFORMAT aligned next to an unaccessible page for bounds
|
||||
* checking */
|
||||
twoPages = VirtualAlloc(NULL, 2 * dwPageSize, MEM_RESERVE | MEM_COMMIT,
|
||||
PAGE_READWRITE);
|
||||
|
|
|
@ -627,7 +627,7 @@ static void wave_out_test_device(int device)
|
|||
WAVE_MAPPED,&capsA);
|
||||
}
|
||||
|
||||
/* Try a PCMWAVEFORMAT aligned next to an unaccessable page for bounds
|
||||
/* Try a PCMWAVEFORMAT aligned next to an unaccessible page for bounds
|
||||
* checking */
|
||||
twoPages = VirtualAlloc(NULL, 2 * dwPageSize, MEM_RESERVE | MEM_COMMIT,
|
||||
PAGE_READWRITE);
|
||||
|
|
|
@ -38,7 +38,7 @@ extern "C" {
|
|||
* type model where int and long are 32 bit and pointer is 64-bit.
|
||||
*/
|
||||
|
||||
/* Type model indepent typedefs */
|
||||
/* Type model independent typedefs */
|
||||
/* The __intXX types are native types defined by the MS C compiler.
|
||||
* Apps that make use of them before they get defined here, can
|
||||
* simply add to the command line:
|
||||
|
|
|
@ -2636,7 +2636,7 @@ typedef struct tagMESSAGE_RESOURCE_DATA {
|
|||
*/
|
||||
|
||||
/*
|
||||
* First a constant for the following typdefs.
|
||||
* First a constant for the following typedefs.
|
||||
*/
|
||||
|
||||
#define ANYSIZE_ARRAY 1
|
||||
|
|
Loading…
Reference in New Issue