# HG changeset patch # User Yuya Nishihara # Date 1566016031 -32400 # Node ID 1faa2bed47c69153ffd1619b62371dfcf7d3d2b0 # Parent 8f0881193946ded355bad7106508fd0467fcb31d rust-dirstate: rename NULL_REVISION to NULL_ID which isn't a revision number diff -r 8f0881193946 -r 1faa2bed47c6 rust/hg-core/src/dirstate/dirstate_map.rs --- a/rust/hg-core/src/dirstate/dirstate_map.rs Sat Aug 17 13:26:04 2019 +0900 +++ b/rust/hg-core/src/dirstate/dirstate_map.rs Sat Aug 17 13:27:11 2019 +0900 @@ -20,7 +20,7 @@ pub type FileFoldMap = HashMap, Vec>; -const NULL_REVISION: [u8; 20] = [0; 20]; +const NULL_ID: [u8; 20] = [0; 20]; const MTIME_UNSET: i32 = -1; const SIZE_DIRTY: i32 = -2; @@ -69,8 +69,8 @@ self.non_normal_set.clear(); self.other_parent_set.clear(); self.set_parents(DirstateParents { - p1: NULL_REVISION, - p2: NULL_REVISION, + p1: NULL_ID, + p2: NULL_ID, }) } @@ -267,8 +267,8 @@ }; } else if file_contents.is_empty() { parents = DirstateParents { - p1: NULL_REVISION, - p2: NULL_REVISION, + p1: NULL_ID, + p2: NULL_ID, }; } else { return Err(DirstateError::Parse(DirstateParseError::Damaged));