Fixing Alex's crazy tab hijinks.
[ITFoundation.git] / ITCarbonSupport.m
index 3995a65..31d25cd 100644 (file)
@@ -6,11 +6,11 @@ NSString *NSStringFromFourCharCode(unsigned long code) {
 
 unsigned long FourCharCodeFromNSString(NSString *string) {
        const unsigned char *c_s = [string UTF8String];
-    unsigned long tmp = *c_s++;
-    tmp <<= 8;
-    tmp |= *c_s++;
-    tmp <<= 8;
-    tmp |= *c_s++;
-    tmp <<= 8;
-    return tmp |= *c_s++;
+       unsigned long tmp = *c_s++;
+       tmp <<= 8;
+       tmp |= *c_s++;
+       tmp <<= 8;
+       tmp |= *c_s++;
+       tmp <<= 8;
+       return tmp |= *c_s++;
 }
\ No newline at end of file