Add missing space after comma. Refs #614

Used uncrustify's "sp_after_comma = add" option to detect issues.
This commit is contained in:
Jawwad Ahmad
2012-06-03 23:38:36 -04:00
parent 734b0350fe
commit 6d71b2d82b
11 changed files with 25 additions and 25 deletions

View File

@@ -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;