Module: wine Branch: master Commit: 78d9a8505477dfcffc7293816d8dfdc3e58b7ffa URL: http://source.winehq.org/git/wine.git/?a=commit;h=78d9a8505477dfcffc7293816d...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Sun May 1 11:23:19 2016 +0300
msxml3: Fix a typo in comment.
Signed-off-by: Andrey Gusev andrey.goosev@gmail.com Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/msxml3/saxreader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/msxml3/saxreader.c b/dlls/msxml3/saxreader.c index 2b087bc..0ce135b 100644 --- a/dlls/msxml3/saxreader.c +++ b/dlls/msxml3/saxreader.c @@ -2522,7 +2522,7 @@ static HRESULT internal_parseBuffer(saxreader *This, const char *buffer, int siz if (encoding == XML_CHAR_ENCODING_NONE) { const WCHAR *ptr = (WCHAR*)buffer; - /* xml declaration with possibly specfied encoding will be still handled by parser */ + /* xml declaration with possibly specified encoding will be still handled by parser */ if ((size >= 2) && *ptr == '<' && ptr[1] != '?') { enc_name = (xmlChar*)xmlGetCharEncodingName(XML_CHAR_ENCODING_UTF16LE);