documentation fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32157 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2011-02-14 10:57:57 +00:00
parent 3d7125e2b0
commit ea857575f2
17 changed files with 234 additions and 127 deletions

View file

@ -79,7 +79,7 @@
unsigned woffset;\
BOOL readable;\
BOOL writable;\
int cState;\
int cState
#include <string.h>

View file

@ -469,15 +469,15 @@ GSObjCAddClasses(NSArray *classes)
static BOOL behavior_debug = NO;
BOOL
GSObjCBehaviorDebug(int i)
GSObjCBehaviorDebug(int setget)
{
BOOL old = behavior_debug;
if (i == YES)
if (setget == 1)
{
behavior_debug = YES;
}
else if (i == NO)
else if (setget == 0)
{
behavior_debug = NO;
}