* WebCoreSupport/WebFrameBridge.m:
(-[WebFrameBridge getObjectCacheSize]):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17149
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-10-19 Brady Eidson <beidson@apple.com>
+
+ Build fix - 2gig is on that pesky signed/unsigned limit...
+
+ * WebCoreSupport/WebFrameBridge.m:
+ (-[WebFrameBridge getObjectCacheSize]):
+
2006-10-19 Brady Eidson <beidson@apple.com>
Reviewed by Hyatt.
int cacheSize = [[self _preferences] _objectCacheSize];
int multiplier = 1;
- if (memSize >= 2048 * 1024 * 1024)
+ if (memSize >= (unsigned)(2048 * 1024 * 1024))
multiplier = 8;
else if (memSize >= 1024 * 1024 * 1024)
multiplier = 4;