pointers are confusing

This commit is contained in:
Scott Chacon 2012-05-03 09:00:29 -07:00
parent eadf1e57d8
commit 568d35b89c

View File

@ -95,7 +95,7 @@
NSString *message = [NSString stringWithFormat:@"Trying to unwatch %@, which we aren't watching", path];
NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:message, NSLocalizedDescriptionKey, nil];
NSError *e = [NSError errorWithDomain:@"PathWatcher" code:0 userInfo:userInfo];
error = &e;
*error = e;
return;
}