Changeset 1241

Show
Ignore:
Timestamp:
01/05/10 04:03:18 (2 months ago)
Author:
astrange
Message:

Fix missing '&' in GetSRGBColorSpace in release branch.

This caused a crash on 10.4.
r1233 was correct, but the & was somehow lost when merging it.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/perian-1.2/CommonUtils.c

    r1237 r1241  
    576576                loaded = TRUE; 
    577577 
    578                 if (kCGColorSpaceSRGB) { 
     578                if (&kCGColorSpaceSRGB) { 
    579579                        sRGBColorSpace = CGColorSpaceCreateWithName(kCGColorSpaceSRGB); // does not exist on 10.4 
    580580                } else {