diff options
author | Joe <rbo@gmx.us> | 2023-12-26 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2023-12-26 20:20:20 +0100 |
commit | d833db13adb697307a6889bc526aab40a5b37721 (patch) | |
tree | 4c2bb775906e8bf045b737f0d3f327b2e035eb4a /c_hardflip.go | |
parent | up (diff) | |
download | hardflip-d833db13adb697307a6889bc526aab40a5b37721.tar.gz hardflip-d833db13adb697307a6889bc526aab40a5b37721.tar.bz2 hardflip-d833db13adb697307a6889bc526aab40a5b37721.tar.xz hardflip-d833db13adb697307a6889bc526aab40a5b37721.tar.zst hardflip-d833db13adb697307a6889bc526aab40a5b37721.zip |
up
Diffstat (limited to '')
-rw-r--r-- | c_hardflip.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/c_hardflip.go b/c_hardflip.go index 0e2269d..5e95a13 100644 --- a/c_hardflip.go +++ b/c_hardflip.go @@ -74,13 +74,12 @@ func main() { for i := 0; uint16(i) < dir.Depth; i++ { spaces += " " } - fmt.Println(spaces, dir.ID, dir.Name) + fmt.Println(spaces, dir.ID, dir.Name + "/") host := dir.lhost.head for host != nil { - fmt.Println(spaces, " ", host.ID, host.Name) + fmt.Println(spaces, " ", host.ID, host.Filename) host = host.next } - fmt.Println() dir = dir.next } // i_ui(&data) |