agendafs
A filesystem for your calendar.
git clone git://mccd.space/agendafscommit 462e8c520836e770e96f0f99b8b369e7a910d65b
parent fe4b46fc78422b5c973e12e2f13f35b425e37c40
Author: Marc Coquand <marc@coquand.email>
Date: Tue, 22 Jul 2025 14:16:48 +0200
Remove unnecessary comments
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main.c b/main.c
@@ -770,8 +770,8 @@ main(int argc, char *argv[])
int ret = fuse_main(args.argc, args.argv, &journal_oper, NULL);
LOG("Cleaning up");
- pthread_cancel(watcher_thread); // Stop the watcher when FUSE ends
- pthread_join(watcher_thread, NULL); // Clean up
+ pthread_cancel(watcher_thread);
+ pthread_join(watcher_thread, NULL);
LOG("Pthread freed");
hashmap_free(entries_original_ics);