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

Commit

Permalink
avoid Xcode 4.2's semantic warning
Browse files Browse the repository at this point in the history
  • Loading branch information
typester committed Dec 6, 2011
1 parent a6bd615 commit d414e15
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 d414e15

Please sign in to comment.