| Index: third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp b/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
|
| index f9fdca6d20eb28b6259f917669b051107e529f60..0a72fab3de0ef7d568d4d0dd1e3e315d1662e960 100644
|
| --- a/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
|
| +++ b/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
|
| @@ -1346,7 +1346,7 @@ static void commentHandler(void* closure, const xmlChar* text) {
|
| getParser(closure)->comment(toString(text));
|
| }
|
|
|
| -WTF_ATTRIBUTE_PRINTF(2, 3)
|
| +PRINTF_FORMAT(2, 3)
|
| static void warningHandler(void* closure, const char* message, ...) {
|
| va_list args;
|
| va_start(args, message);
|
| @@ -1354,7 +1354,7 @@ static void warningHandler(void* closure, const char* message, ...) {
|
| va_end(args);
|
| }
|
|
|
| -WTF_ATTRIBUTE_PRINTF(2, 3)
|
| +PRINTF_FORMAT(2, 3)
|
| static void normalErrorHandler(void* closure, const char* message, ...) {
|
| va_list args;
|
| va_start(args, message);
|
|
|