| Index: third_party/WebKit/Source/wtf/Assertions.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/Assertions.cpp b/third_party/WebKit/Source/wtf/Assertions.cpp
|
| index 2620b5535e9895add28e1a5eaba5fc8b6686555a..1c0c899ea4b81ac78d8f8921dd6a791facc5444b 100644
|
| --- a/third_party/WebKit/Source/wtf/Assertions.cpp
|
| +++ b/third_party/WebKit/Source/wtf/Assertions.cpp
|
| @@ -74,7 +74,7 @@
|
| void WTFGetBacktrace(void** stack, int* size);
|
| void WTFPrintBacktrace(void** stack, int size);
|
|
|
| -WTF_ATTRIBUTE_PRINTF(1, 0)
|
| +PRINTF_FORMAT(1, 0)
|
| static void vprintf_stderr_common(const char* format, va_list args) {
|
| #if OS(MACOSX) && USE(APPLE_SYSTEM_LOG)
|
| va_list copyOfArgs;
|
| @@ -132,7 +132,7 @@ static void vprintf_stderr_with_trailing_newline(const char* format,
|
| #pragma GCC diagnostic pop
|
| #endif
|
|
|
| -WTF_ATTRIBUTE_PRINTF(1, 2)
|
| +PRINTF_FORMAT(1, 2)
|
| static void printf_stderr_common(const char* format, ...) {
|
| va_list args;
|
| va_start(args, format);
|
|
|