Minor reformatting

This commit is contained in:
Mattt Thompson 2013-08-20 16:45:17 -07:00
parent f0ba01ffd4
commit 0371e366ab

View file

@ -70,7 +70,7 @@
_inputStream = nil;
}
- (void) writeBytesIfPossible {
- (void)writeBytesIfPossible {
while ([self.outputStream hasSpaceAvailable] && self.bytesWritten < [self.data length]) {
const uint8_t *bytes = [self.data bytes];
NSInteger bytesWritten = [self.outputStream write:bytes maxLength:[self.data length] - self.bytesWritten];