mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-24 12:55:58 +08:00
Add missing space after comma. Refs #614
Used uncrustify's "sp_after_comma = add" option to detect issues.
This commit is contained in:
@@ -185,7 +185,7 @@ RK_FIX_CATEGORY_BUG(NSString_RKAdditions)
|
||||
// Convert MD5 value in the buffer to NSString of hex values
|
||||
NSMutableString *output = [NSMutableString stringWithCapacity:CC_MD5_DIGEST_LENGTH * 2];
|
||||
for (int i = 0; i < CC_MD5_DIGEST_LENGTH; i++) {
|
||||
[output appendFormat:@"%02x",md5Buffer[i]];
|
||||
[output appendFormat:@"%02x", md5Buffer[i]];
|
||||
}
|
||||
|
||||
return output;
|
||||
|
||||
Reference in New Issue
Block a user