Title: [173368] trunk/Source/WebKit/mac
Revision
173368
Author
[email protected]
Date
2014-09-07 12:14:25 -0700 (Sun, 07 Sep 2014)

Log Message

Fix build failure seen on Mountain Lion buildbot.

* Misc/WebNSDataExtras.h: Make WEB_GUESS_MIME_TYPE_PEEK_LENGTH an unsigned instead
of an int, to avoid warning about mixing signs.

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (173367 => 173368)


--- trunk/Source/WebKit/mac/ChangeLog	2014-09-07 17:56:32 UTC (rev 173367)
+++ trunk/Source/WebKit/mac/ChangeLog	2014-09-07 19:14:25 UTC (rev 173368)
@@ -1,3 +1,10 @@
+2014-09-07  Darin Adler  <[email protected]>
+
+        Fix build failure seen on Mountain Lion buildbot.
+
+        * Misc/WebNSDataExtras.h: Make WEB_GUESS_MIME_TYPE_PEEK_LENGTH an unsigned instead
+        of an int, to avoid warning about mixing signs.
+
 2014-09-06  Darin Adler  <[email protected]>
 
         Make updates suggested by new version of Xcode

Modified: trunk/Source/WebKit/mac/Misc/WebNSDataExtras.h (173367 => 173368)


--- trunk/Source/WebKit/mac/Misc/WebNSDataExtras.h	2014-09-07 17:56:32 UTC (rev 173367)
+++ trunk/Source/WebKit/mac/Misc/WebNSDataExtras.h	2014-09-07 19:14:25 UTC (rev 173368)
@@ -30,7 +30,7 @@
 
 #import "WebTypesInternal.h"
 
-#define WEB_GUESS_MIME_TYPE_PEEK_LENGTH 1024
+#define WEB_GUESS_MIME_TYPE_PEEK_LENGTH 1024U
 
 @interface NSData (WebNSDataExtras)
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to