diff options
Diffstat (limited to 'Source/SPFavoritesController.m')
-rw-r--r-- | Source/SPFavoritesController.m | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/SPFavoritesController.m b/Source/SPFavoritesController.m index 23be83d7..1ac410e5 100644 --- a/Source/SPFavoritesController.m +++ b/Source/SPFavoritesController.m @@ -104,7 +104,9 @@ static SPFavoritesController *sharedFavoritesController = nil; { pthread_mutex_lock(&favoritesLock); - [NSThread detachNewThreadSelector:@selector(_saveFavoritesDataInBackground:) toTarget:self withObject:[[[favoritesTree childNodes] objectAtIndex:0] dictionaryRepresentation]]; + [NSThread detachNewThreadSelector:@selector(_saveFavoritesDataInBackground:) + toTarget:self + withObject:[[[favoritesTree childNodes] objectAtIndex:0] dictionaryRepresentation]]; pthread_mutex_unlock(&favoritesLock); } |