Take an int instead of an NSInteger for the Bonjour port

This commit is contained in:
Mitchell Livingston 2012-09-09 12:26:18 +00:00
parent fadd8f704f
commit bb9c73bda4
3 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@
+ (BonjourController *) defaultController; + (BonjourController *) defaultController;
- (void) startWithPort: (NSInteger) port; - (void) startWithPort: (int) port;
- (void) stop; - (void) stop;
@end @end

View File

@ -45,7 +45,7 @@ BonjourController * fDefaultController = nil;
[super dealloc]; [super dealloc];
} }
- (void) startWithPort: (NSInteger) port - (void) startWithPort: (int) port
{ {
[self stop]; [self stop];