Commit b0c4d515 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

xmllite: Drop superfluous casts to self.

parent c3aa9def
...@@ -213,9 +213,9 @@ typedef struct ...@@ -213,9 +213,9 @@ typedef struct
static WCHAR emptyW[] = L""; static WCHAR emptyW[] = L"";
static WCHAR xmlW[] = L"xml"; static WCHAR xmlW[] = L"xml";
static WCHAR xmlnsW[] = L"xmlns"; static WCHAR xmlnsW[] = L"xmlns";
static const strval strval_empty = { (WCHAR *)emptyW, 0 }; static const strval strval_empty = { emptyW, 0 };
static const strval strval_xml = { (WCHAR *)xmlW, 3 }; static const strval strval_xml = { xmlW, 3 };
static const strval strval_xmlns = { (WCHAR *)xmlnsW, 5 }; static const strval strval_xmlns = { xmlnsW, 5 };
struct reader_position struct reader_position
{ {
......
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