summaryrefslogtreecommitdiff
path: root/cli/deno_error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/deno_error.rs')
-rw-r--r--cli/deno_error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/deno_error.rs b/cli/deno_error.rs
index 346149cd1..b16fb3fa6 100644
--- a/cli/deno_error.rs
+++ b/cli/deno_error.rs
@@ -140,7 +140,7 @@ impl GetErrorKind for ModuleResolutionError {
match self {
InvalidUrl(ref err) | InvalidBaseUrl(ref err) => err.kind(),
InvalidPath(_) => ErrorKind::InvalidPath,
- ImportPrefixMissing(_) => ErrorKind::ImportPrefixMissing,
+ ImportPrefixMissing(_, _) => ErrorKind::ImportPrefixMissing,
}
}
}