Title: [244133] trunk/Tools
Revision
244133
Author
[email protected]
Date
2019-04-10 10:40:21 -0700 (Wed, 10 Apr 2019)

Log Message

Try to fix the 32-bit watchOS build.

* TestWebKitAPI/cocoa/TestWKWebView.mm:
(-[TestWKWebView evaluateJavaScriptAndWaitForInputSessionToChange:]):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (244132 => 244133)


--- trunk/Tools/ChangeLog	2019-04-10 17:12:50 UTC (rev 244132)
+++ trunk/Tools/ChangeLog	2019-04-10 17:40:21 UTC (rev 244133)
@@ -1,3 +1,10 @@
+2019-04-10  Andy Estes  <[email protected]>
+
+        Try to fix the 32-bit watchOS build.
+
+        * TestWebKitAPI/cocoa/TestWKWebView.mm:
+        (-[TestWKWebView evaluateJavaScriptAndWaitForInputSessionToChange:]):
+
 2019-04-10  Antoine Quint  <[email protected]>
 
         Enable Pointer Events on watchOS

Modified: trunk/Tools/TestWebKitAPI/cocoa/TestWKWebView.mm (244132 => 244133)


--- trunk/Tools/TestWebKitAPI/cocoa/TestWKWebView.mm	2019-04-10 17:12:50 UTC (rev 244132)
+++ trunk/Tools/TestWebKitAPI/cocoa/TestWKWebView.mm	2019-04-10 17:40:21 UTC (rev 244133)
@@ -455,7 +455,7 @@
         if (hasEmittedWarning || startTime + secondsToWaitUntilWarning >= [NSDate timeIntervalSinceReferenceDate])
             continue;
 
-        NSLog(@"Warning: expecting input session change count to differ from %tu", initialChangeCount);
+        NSLog(@"Warning: expecting input session change count to differ from %lu", static_cast<unsigned long>(initialChangeCount));
         hasEmittedWarning = YES;
     }
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to