Commit ee28dd80 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Assorted spelling fixes.

parent 790d2e8b
...@@ -1559,9 +1559,10 @@ static void test_render_filter_priority(void) ...@@ -1559,9 +1559,10 @@ static void test_render_filter_priority(void)
static const WCHAR wszFilterInstanceName4[] = {'T', 'e', 's', 't', 'f', 'i', 'l', 't', 'e', 'r', 'I', static const WCHAR wszFilterInstanceName4[] = {'T', 'e', 's', 't', 'f', 'i', 'l', 't', 'e', 'r', 'I',
'n', 's', 't', 'a', 'n', 'c', 'e', '4', 0 }; 'n', 's', 't', 'a', 'n', 'c', 'e', '4', 0 };
/* Test which renderer of two already added to the graph will be chosen (one is "exact" match, other is /* Test which renderer of two already added to the graph will be chosen
"wildcard" match. Seems to very by order in which filters are added to the graph, thus indicating * (one is "exact" match, other is "wildcard" match. Seems to depend
no preference given to exact match. */ * on the order in which filters are added to the graph, thus indicating
* no preference given to exact match. */
hr = CoCreateInstance(&CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER, &IID_IFilterGraph2, (LPVOID*)&pgraph2); hr = CoCreateInstance(&CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER, &IID_IFilterGraph2, (LPVOID*)&pgraph2);
ok(hr == S_OK, "CoCreateInstance failed with %08x\n", hr); ok(hr == S_OK, "CoCreateInstance failed with %08x\n", hr);
if (!pgraph2) return; if (!pgraph2) return;
......
...@@ -421,7 +421,7 @@ static inline const char* debug_strval(const xmlreader *reader, const strval *v) ...@@ -421,7 +421,7 @@ static inline const char* debug_strval(const xmlreader *reader, const strval *v)
return debugstr_wn(reader_get_strptr(reader, v), v->len); return debugstr_wn(reader_get_strptr(reader, v), v->len);
} }
/* used to initalize from constant string */ /* used to initialize from constant string */
static inline void reader_init_cstrvalue(WCHAR *str, UINT len, strval *v) static inline void reader_init_cstrvalue(WCHAR *str, UINT len, strval *v)
{ {
v->start = 0; v->start = 0;
......
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