remove a poorly placed semicolon
This commit is contained in:
parent
399485bf6c
commit
31911bea10
|
@ -54,7 +54,7 @@ BonjourController * fDefaultController = nil;
|
||||||
[fService publish];
|
[fService publish];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) stop;
|
- (void) stop
|
||||||
{
|
{
|
||||||
[fService stop];
|
[fService stop];
|
||||||
[fService release];
|
[fService release];
|
||||||
|
@ -63,12 +63,12 @@ BonjourController * fDefaultController = nil;
|
||||||
|
|
||||||
- (void) netService: (NSNetService *) sender didNotPublish: (NSDictionary *) errorDict
|
- (void) netService: (NSNetService *) sender didNotPublish: (NSDictionary *) errorDict
|
||||||
{
|
{
|
||||||
NSLog(@"Failed to publish the Web Interface service on port: %d, with error: %@", [sender port], errorDict);
|
NSLog(@"Failed to publish the web interface service on port: %d, with error: %@", [sender port], errorDict);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) netService: (NSNetService *) sender didNotResolve: (NSDictionary *) errorDict
|
- (void) netService: (NSNetService *) sender didNotResolve: (NSDictionary *) errorDict
|
||||||
{
|
{
|
||||||
NSLog(@"Failed to resolve the Web Interface service on port: %d, with error: %@", [sender port], errorDict);
|
NSLog(@"Failed to resolve the web interface service on port: %d, with error: %@", [sender port], errorDict);
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
Loading…
Reference in New Issue