this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix _set_user_dir_suffix return value

+1 -1
+1 -1
src/libsystem_coreservices/dirhelper.c
··· 82 82 pthread_mutex_lock(&dir_suffix_lock); 83 83 dir_suffix = suffix; 84 84 pthread_mutex_unlock(&dir_suffix_lock); 85 - return 0; 85 + return 1; // weird, it's suppossed to return non-zero on success (maybe it's actually a bool?) 86 86 }; 87 87