From 2533fd2da927176f0cccbea15e393c0449c7089e Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 14 Nov 2023 11:14:28 -0500 Subject: [PATCH] Fix segment comparisons. --- OSBindings/Mac/Clock SignalTests/8088Tests.mm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/8088Tests.mm b/OSBindings/Mac/Clock SignalTests/8088Tests.mm index 35841e1b5..25c6e7967 100644 --- a/OSBindings/Mac/Clock SignalTests/8088Tests.mm +++ b/OSBindings/Mac/Clock SignalTests/8088Tests.mm @@ -127,10 +127,10 @@ class Segments { bool operator ==(const Segments &rhs) const { return - es_base_ != rhs.es_base_ && - cs_base_ != rhs.cs_base_ && - ds_base_ != rhs.ds_base_ && - ss_base_ != rhs.ss_base_; + es_base_ == rhs.es_base_ && + cs_base_ == rhs.cs_base_ && + ds_base_ == rhs.ds_base_ && + ss_base_ == rhs.ss_base_; } private: