Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
NSInteger precedence = [self operatorPrecedence];
[d appendFormat:@"precedence:%d, ", precedence];

gives:

Warning: Format specifies type 'int' but the argument has type 'NSInteger' (aka 'long')

and Xcode suggests to change %d to %ld.

However, it only works for either 32-bit or 64-bit target, as NSInteger is:

 #if __LP64__ || (TARGET_OS_EMBEDDED && !TARGET_OS_IPHONE) || TARGET_OS_WIN32 || NS_BUILD_32_LIKE_64
 typedef long NSInteger;
 typedef unsigned long NSUInteger;
 #else
 typedef int NSInteger;
 typedef unsigned int NSUInteger;
 #endif

What's the best way to kill the warning, for both 32-bit and 64-bit targets?

share|improve this question
If you're supporting 10.8 & newer only, you don't even have to compile for 32-bit (32-bit machines can't run 10.8). – Michael Dautermann Jan 23 at 4:27
The code runs on both OS X and iOS. – ohho Jan 23 at 4:36

2 Answers

up vote 5 down vote accepted

Follow the instructions in Apple's 64-Bit Transition Guide.

For an NSInteger, use %ld and cast the value to long.

[d appendFormat:@"precedence:%ld, ", (long)precedence];
share|improve this answer

Try this

UPD:

NSInteger precedence = [self operatorPrecedence];
[d appendFormat:@"precedence:%ld, ", (long)precedence];
share|improve this answer
This will truncate some values in 64-bit since NSInteger is a 64-bit type while int is only 32-bit. – bdash Jan 23 at 5:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.