diff --git a/client/data/Methods/Events.cs b/client/data/Methods/Events.cs index 8cdd0bd..0d7635f 100644 --- a/client/data/Methods/Events.cs +++ b/client/data/Methods/Events.cs @@ -169,7 +169,7 @@ public static MachineCheckException MakeMachineCheckException(XmlNode dataNode) { MachineCheckException mce = new(); - string MciStatString = dataNode.InnerText; + string MciStatString = dataNode.InnerText.Substring(2); if (!ulong.TryParse(MciStatString, System.Globalization.NumberStyles.HexNumber, null, out ulong MciStat)) { diff --git a/client/data/Structs.cs b/client/data/Structs.cs index 4204986..aa90676 100644 --- a/client/data/Structs.cs +++ b/client/data/Structs.cs @@ -309,7 +309,6 @@ public class UnexpectedShutdown } public class MachineCheckException { - public string Timestamp; public bool MciStatusRegisterValid; // Bit 63 public bool ErrorOverflow; // Bit 62 public bool UncorrectedError; // Bit 61 @@ -337,14 +336,12 @@ public class PciWheaError } public unsafe class WheaErrorRecord { - public DateTime? Timestamp; public WheaErrorHeader ErrorHeader; public List ErrorDescriptors = new(); public List ErrorPackets = new(); } public class WheaErrorRecordReadable { - public DateTime? Timestamp; public WheaErrorHeaderReadable ErrorHeader; public List ErrorDescriptors; public List ErrorPackets;