mirror of
https://github.com/gnustep/libs-performance.git
synced 2025-02-19 01:51:01 +00:00
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:
parent
951b791420
commit
a5aaf86a79
1 changed files with 1 additions and 1 deletions
|
@ -1040,7 +1040,7 @@ typedef struct {
|
||||||
[NSException raise: NSInternalInconsistencyException
|
[NSException raise: NSInternalInconsistencyException
|
||||||
format: @"-startDuration: for '%@' when not set for durations", name];
|
format: @"-startDuration: for '%@' when not set for durations", name];
|
||||||
}
|
}
|
||||||
if (0.0 == my->started)
|
if (0.0 != my->started)
|
||||||
{
|
{
|
||||||
[NSException raise: NSInternalInconsistencyException
|
[NSException raise: NSInternalInconsistencyException
|
||||||
format: @"-startDuration: for '%@' when already started", name];
|
format: @"-startDuration: for '%@' when already started", name];
|
||||||
|
|
Loading…
Reference in a new issue