Fix some argument names for autogsdoc

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12538 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-02-13 22:25:38 +00:00
parent 7bd3105385
commit c21ef3f265
7 changed files with 43 additions and 39 deletions

View file

@ -328,7 +328,7 @@ GSDebugAllocationClassList()
* call (difference != 0).
*/
const char*
GSDebugAllocationList(BOOL difference)
GSDebugAllocationList(BOOL changeFlag)
{
const char *ans;
if (debug_allocation == NO)
@ -337,7 +337,7 @@ GSDebugAllocationList(BOOL difference)
}
if (uniqueLock != nil)
[uniqueLock lock];
ans = _GSDebugAllocationList(difference);
ans = _GSDebugAllocationList(changeFlag);
if (uniqueLock != nil)
[uniqueLock unlock];
return ans;