From a5aaf86a79665de4cf5ba3c227a095378cc7a6c9 Mon Sep 17 00:00:00 2001 From: Wolfgang Lux Date: Tue, 2 Dec 2014 11:24:51 +0000 Subject: [PATCH] Fix incorrect comparison introduced in last commit git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/performance/trunk@38222 72102866-910b-0410-8b05-ffd578937521 --- GSThroughput.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GSThroughput.m b/GSThroughput.m index 4389e05..d7448a6 100644 --- a/GSThroughput.m +++ b/GSThroughput.m @@ -1040,7 +1040,7 @@ typedef struct { [NSException raise: NSInternalInconsistencyException format: @"-startDuration: for '%@' when not set for durations", name]; } - if (0.0 == my->started) + if (0.0 != my->started) { [NSException raise: NSInternalInconsistencyException format: @"-startDuration: for '%@' when already started", name];