mirror of
https://github.com/gnustep/libs-performance.git
synced 2025-02-19 10:01:20 +00:00
Fix stupid error ... need sleep.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/performance/trunk@24064 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ce4f386047
commit
7710087e5a
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
||||||
-include config.make
|
-include config.make
|
||||||
|
|
||||||
PACKAGE_NAME = Performance
|
PACKAGE_NAME = Performance
|
||||||
PACKAGE_VERSION = 0.2.2
|
PACKAGE_VERSION = 0.2.3
|
||||||
SVN_BASE_URL = svn+ssh://svn.gna.org/svn/gnustep/libs
|
SVN_BASE_URL = svn+ssh://svn.gna.org/svn/gnustep/libs
|
||||||
SVN_MODULE_NAME = performance
|
SVN_MODULE_NAME = performance
|
||||||
|
|
||||||
|
|
|
@ -474,7 +474,7 @@ typedef struct {
|
||||||
[m appendFormat: @": cnt %u, max %g, min %g, avg %g",
|
[m appendFormat: @": cnt %u, max %g, min %g, avg %g",
|
||||||
info->cnt, info->max,
|
info->cnt, info->max,
|
||||||
info->min == MAXDURATION ? 0.0 : info->min,
|
info->min == MAXDURATION ? 0.0 : info->min,
|
||||||
info->cnt == 0 ? 0 : info->sum / inco->cnt];
|
info->cnt == 0 ? 0 : info->sum / info->cnt];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue