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
This commit is contained in:
Wolfgang Lux 2014-12-02 11:24:51 +00:00
parent 951b791420
commit a5aaf86a79

View file

@ -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];