diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/Makefile | 2 | ||||
-rw-r--r-- | fs/tabfs.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/Makefile b/fs/Makefile index a34412c..c3cb10a 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -20,7 +20,7 @@ LIBS = -losxfuse all: $(TARGETS) -tabfs: common.c ws.c tabfs.c +tabfs: common.c tabfs.c $(CC) $(CFLAGS_OSXFUSE) $(CFLAGS_EXTRA) -o $@ $^ $(LIBS) clean: @@ -231,8 +231,8 @@ main(int argc, char **argv) { common_init(); - pthread_t websocket_thread; - pthread_create(&websocket_thread, NULL, websocket_main, NULL); + /* pthread_t websocket_thread; */ + /* pthread_create(&websocket_thread, NULL, websocket_main, NULL); */ return fuse_main(argc, argv, &tabfs_filesystem_operations, NULL); } |