Skip to content
This repository has been archived by the owner on May 10, 2019. It is now read-only.

Commit

Permalink
Merge pull request #1 from typester/master
Browse files Browse the repository at this point in the history
Just added a couple of parentheses to avoid Xcode 4.2's warning
  • Loading branch information
Loren Brichter committed Dec 6, 2011
2 parents a6bd615 + d414e15 commit 2117ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OAuth+Additions.m
Expand Up @@ -36,7 +36,7 @@ - (NSString *)ab_RFC3986EncodedString // UTF-8 encodes prior to URL encoding
const char *p = [self UTF8String];
unsigned char c;

for(; c = *p; p++)
for(; (c = *p); p++)
{
switch(c)
{
Expand Down

0 comments on commit 2117ecd

Please sign in to comment.