os: remove `pub` from impl_walk_ext

pull/12286/head
Delyan Angelov 2021-10-24 18:48:54 +03:00
parent d1c4b470bc
commit e34046a0e1
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 1 deletions

View File

@ -454,7 +454,7 @@ pub fn walk_ext(path string, ext string) []string {
return res
}
pub fn impl_walk_ext(path string, ext string, mut out []string) {
fn impl_walk_ext(path string, ext string, mut out []string) {
if !is_dir(path) {
return
}