Some interactive elements (branch dropdowns, the user menu, the clone popover) need JavaScript. Reading repositories, issues, patches, and the docs works without it; submitting forms also works as long as you can reach them via direct links.
Radish
alpha
Explore
Docs
Sign in
H
HardenedBSD-pkg
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Clone
Radicle
Git (anonymous pull)
Log in
to clone via SSH
Source
Commits
10440
Issues
Patches
Jobs
Commits
›
9727eec7c0c307f553257ffd990236f651c0f20d
libpkg/clean_cache.c: remove unnecessary return to a void function
rilysh
committed
2 years ago
commit 9727eec7c0c307f553257ffd990236f651c0f20d
parent
62220970b1402b22fb4511a1ea57b2cd2d939119
1 file changed
+1
-2
modified
libpkg/clean_cache.c
@@ -88,6 +88,5 @@ pkg_cache_full_clean(void)
return;
pkg_debug(1, "Cleaning up cachedir");
-
-
return (rm_rf(-1, NULL));
+
rm_rf(-1, NULL);
}