fix uninitialised variable

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/performance/trunk@27283 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2008-12-12 10:37:33 +00:00
parent 9a9c15a904
commit 6307bc5da8
3 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2008-12-12 Richard Frith-Macdonald <rfm@gnu.org>
* GSSkipMutableArray.m: Fix uninitialised variable.
2008-05-30 Richard Frith-Macdonald <rfm@gnu.org>
* GSThroughput.h:

View file

@ -251,6 +251,7 @@ static Class concreteClass = 0;
p = l->header;
k = l->level;
graph = [[NSMutableString alloc] initWithCapacity: 1024];
[graph appendString:
[NSString stringWithFormat: @"digraph %@ {\n", graphName]];
[graph appendString: @"graph [rankdir = LR];\n"];

View file

@ -85,6 +85,7 @@ extern NSString * const GSThroughputTotalKey;
* to call the +tick method in the current thread.<br />
* Passing a value of NO for aFlag will turn off the timer for the current
* thread.<br />
* For the timer to work, the thread's runloop must be running.<br />
* Keeping the notion of the current time up to date is important for
* instances configured to record stats broken down over a number of periods,
* since the periodic breakdown must be adjusted each second.