Module: wine
Branch: master
Commit: ee28dd80ea2ec52847f176519c2cc7f8dd08324e
URL: http://source.winehq.org/git/wine.git/?a=commit;h=ee28dd80ea2ec52847f176519…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Fri Nov 1 10:19:40 2013 +0100
Assorted spelling fixes.
---
dlls/quartz/tests/filtergraph.c | 7 ++++---
dlls/xmllite/reader.c | 2 +-
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/dlls/quartz/tests/filtergraph.c b/dlls/quartz/tests/filtergraph.c
index 68ac884..7a6dd5a 100644
--- a/dlls/quartz/tests/filtergraph.c
+++ b/dlls/quartz/tests/filtergraph.c
@@ -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',
'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
- "wildcard" match. Seems to very by order in which filters are added to the graph, thus indicating
- no preference given to exact match. */
+ /* Test which renderer of two already added to the graph will be chosen
+ * (one is "exact" match, other is "wildcard" match. Seems to depend
+ * 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);
ok(hr == S_OK, "CoCreateInstance failed with %08x\n", hr);
if (!pgraph2) return;
diff --git a/dlls/xmllite/reader.c b/dlls/xmllite/reader.c
index dffe226..9ca7370 100644
--- a/dlls/xmllite/reader.c
+++ b/dlls/xmllite/reader.c
@@ -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);
}
-/* used to initalize from constant string */
+/* used to initialize from constant string */
static inline void reader_init_cstrvalue(WCHAR *str, UINT len, strval *v)
{
v->start = 0;