Correct field value for RemoveRegistryTuple.Root.
Bob Arnson committed
May 13, 2019 at 21:07 UTC
770c99fa4234b11f41a08cafcca5f759f4844cc7
1 file changed
+1
-1
src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs
+1
-1
@@ -51,7 +51,7 @@ namespace WixToolset.Data.Tuples
51
52
public RegistryRootType Root
53
{
54
- get => (RegistryRootType)this.Fields[(int)RemoveRegistryTupleFields.Key]?.AsNumber();
54
+ get => (RegistryRootType)this.Fields[(int)RemoveRegistryTupleFields.Root]?.AsNumber();
55
set => this.Set((int)RemoveRegistryTupleFields.Root, (int)value);
56
}
57