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:
Richard Frith-MacDonald 2006-11-09 13:24:49 +00:00
parent ce4f386047
commit 7710087e5a
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ include $(GNUSTEP_MAKEFILES)/common.make
-include config.make
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_MODULE_NAME = performance

View file

@ -474,7 +474,7 @@ typedef struct {
[m appendFormat: @": cnt %u, max %g, min %g, avg %g",
info->cnt, info->max,
info->min == MAXDURATION ? 0.0 : info->min,
info->cnt == 0 ? 0 : info->sum / inco->cnt];
info->cnt == 0 ? 0 : info->sum / info->cnt];
}
else
{