Skip to content

Commit

Permalink
modified debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
fangfufu committed May 5, 2024
1 parent 01fd2e9 commit 9a7eabd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/fuse_local.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ fs_readdir(const char *path, void *buf, fuse_fill_dir_t dir_add,

#ifdef DEBUG
static int j = 0;
lprintf(debug, "\n!!!!Calling fs_readdir for the %d time!!!!\n", j);
lprintf(debug, "!!!!Calling fs_readdir for the %d time!!!!\n", j);
j++;
#endif

Expand Down
2 changes: 1 addition & 1 deletion src/link.c
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ LinkTable *LinkTable_new(const char *url)

#ifdef DEBUG
static int i = 0;
lprintf(debug, "\n!!!!Calling LinkTable_new for the %d time!!!!\n", i);
lprintf(debug, "!!!!Calling LinkTable_new for the %d time!!!!\n", i);
i++;
#endif

Expand Down

0 comments on commit 9a7eabd

Please sign in to comment.