diff options
author | Joe <rbo@gmx.us> | 2025-01-20 18:27:47 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2025-01-20 18:27:47 +0100 |
commit | a4c5efaf5c6451fc1d89d964e1d532c3e1f206d7 (patch) | |
tree | 1669bb7242d75132b85d609583d50a77c4f9bff8 /src/i_host.go | |
parent | up (diff) | |
download | hardflip-fuzz.tar.gz hardflip-fuzz.tar.bz2 hardflip-fuzz.tar.xz hardflip-fuzz.tar.zst hardflip-fuzz.zip |
herefuzz
Diffstat (limited to 'src/i_host.go')
-rw-r--r-- | src/i_host.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i_host.go b/src/i_host.go index 5cc1191..92ec32f 100644 --- a/src/i_host.go +++ b/src/i_host.go @@ -126,7 +126,6 @@ func i_draw_host_panel(ui HardUI, icons bool, // } for ptr := litems.draw; ptr != nil && line < ui.dim[H] - 2; ptr = ptr.next { if ui.mode == FUZZ_MODE && i_fuzz_check(ptr, &ui) == false { - // TODO: here continue } if ptr.is_dir() == false && ptr.Host != nil { @@ -176,6 +175,7 @@ func i_fuzz_check(ptr *ItemsNode, ui *HardUI) bool { if len(end_runes) == 0 { return false } + // TODO: here } return true } |