Index: third_party/mozilla/NSWorkspace+Utils.m |
diff --git a/third_party/mozilla/NSWorkspace+Utils.m b/third_party/mozilla/NSWorkspace+Utils.m |
index e3d052cef2ad4ee019807f1cd5dc63b0e348020e..157f1d0649b6bf4867cc2aa4457fb001cffa73c4 100644 |
--- a/third_party/mozilla/NSWorkspace+Utils.m |
+++ b/third_party/mozilla/NSWorkspace+Utils.m |
@@ -164,10 +164,10 @@ |
// |
+ (long)systemVersion |
{ |
- static long sSystemVersion = 0; |
+ static SInt32 sSystemVersion = 0; |
Mark Mentovai
2012/08/20 13:25:58
When you make a change to most files in a third_pa
|
if (!sSystemVersion) |
Gestalt(gestaltSystemVersion, &sSystemVersion); |
- return sSystemVersion; |
+ return (long)sSystemVersion; |
} |
// |