about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/castore/src/errors.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/castore/src/errors.rs b/tvix/castore/src/errors.rs
index 3c044d9d79cb..7b5d1a422c99 100644
--- a/tvix/castore/src/errors.rs
+++ b/tvix/castore/src/errors.rs
@@ -47,7 +47,7 @@ pub enum DirectoryError {
     /// Node failed validation
     #[error("invalid node with name {}: {:?}", .0, .1.to_string())]
     InvalidNode(PathComponent, ValidateNodeError),
-    #[error("Total size exceeds u32::MAX")]
+    #[error("Total size exceeds u64::MAX")]
     SizeOverflow,
     /// Invalid name encountered
     #[error("Invalid name: {0}")]