Strip trailing whitespace. Refs #614

This commit is contained in:
Jawwad Ahmad
2012-06-03 22:20:08 -04:00
parent e4882e2e00
commit 10433089a4
19 changed files with 177 additions and 177 deletions

View File

@@ -166,6 +166,6 @@ void RKLogIntegerAsBinary(NSUInteger bitMask) {
do {
[string appendString:(((NSUInteger)bitMask & bit) ? @"1" : @"0")];
} while ( bit >>= 1 );
NSLog(@"Value of %ld in binary: %@", (long) bitMask, string);
}