From 1e8376b7701403229fdcc71ece3dc740ab45b3c2 Mon Sep 17 00:00:00 2001 From: Numillyah Date: Wed, 22 Jun 2022 23:28:08 +0300 Subject: [PATCH] fixed "printpath" --- structs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/structs.c b/structs.c index 8365d0b..58558f2 100644 --- a/structs.c +++ b/structs.c @@ -326,6 +326,8 @@ int print_path(Folder* fld, File* fil) printf("<-"); print_path(parent, NULL); } + else + printf("\n"); return 1; }