diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-30 17:18:58 +0530 |
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-30 17:18:58 +0530 |
| commit | 7cc0394cd4ccdbab3ff6fabea0efdd20a3117fc2 (patch) | |
| tree | 6cc45fe6fca0199e7d97d8907bed601cef1430da /src | |
| parent | b7ad35df28dfe0a45f0292ed46b658025b61f9e8 (diff) | |
msg: remove unnecessary logging
Diffstat (limited to 'src')
| -rw-r--r-- | src/msg.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -154,10 +154,8 @@ run(void) if (S_ISREG(path_stat.st_mode)) copy_recursively(path, NULL, FTW_F, NULL); - else if (S_ISDIR(path_stat.st_mode)) { - printf("%s\n", path); + else if (S_ISDIR(path_stat.st_mode)) nftw(path, copy_recursively, 64, FTW_PHYS | FTW_ACTIONRETVAL); - } free(path); } |
