xmllite: Drop superfluous casts to self.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2020-12-03 00:32:48 +01:00 committed by Alexandre Julliard
parent c3aa9defbb
commit b0c4d51588
1 changed files with 3 additions and 3 deletions

View File

@ -213,9 +213,9 @@ typedef struct
static WCHAR emptyW[] = L"";
static WCHAR xmlW[] = L"xml";
static WCHAR xmlnsW[] = L"xmlns";
static const strval strval_empty = { (WCHAR *)emptyW, 0 };
static const strval strval_xml = { (WCHAR *)xmlW, 3 };
static const strval strval_xmlns = { (WCHAR *)xmlnsW, 5 };
static const strval strval_empty = { emptyW, 0 };
static const strval strval_xml = { xmlW, 3 };
static const strval strval_xmlns = { xmlnsW, 5 };
struct reader_position
{