cargo: Fix unused argument warning

This commit is contained in:
Brian Anderson 2012-01-19 13:46:28 -08:00
parent 48e916c8fa
commit e6a7383a5f

View File

@ -356,7 +356,7 @@ fn for_each_package(c: cargo, b: block(source, package)) {
}
// FIXME: deduplicate code with install_one_crate
fn test_one_crate(c: cargo, _path: str, cf: str, _p: pkg) {
fn test_one_crate(_c: cargo, _path: str, cf: str, _p: pkg) {
let buildpath = fs::connect(_path, "/test");
need_dir(buildpath);
#debug("Testing: %s -> %s", cf, buildpath);