Skip to content

Commit

Permalink
Fixed type misdeclaration.
Browse files Browse the repository at this point in the history
For clean build with higher warning levels.
  • Loading branch information
richardbuckle committed Mar 25, 2010
1 parent 67bdbe5 commit 19657ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion NSData+Base64.m
Expand Up @@ -99,7 +99,8 @@ - (NSString *) base64EncodingWithLineLength:(unsigned int) lineLength {
long ctremaining = 0;
unsigned char inbuf[3], outbuf[4];
short i = 0;
short charsonline = 0, ctcopy = 0;
unsigned int charsonline = 0;
short ctcopy = 0;
unsigned long ix = 0;

while( YES ) {
Expand Down

0 comments on commit 19657ed

Please sign in to comment.