git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29653 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2010-02-16 17:17:54 +00:00
parent 7293e19429
commit 6482477e24

View file

@ -90,10 +90,12 @@ BOOL GSDebugSet(NSString *level)
mySet = [NSMutableSet new];
for (i = 0; i < argc; i++)
{
NSString *str = [[self arguments] objectAtIndex:i];
NSString *str = [[self arguments] objectAtIndex: i];
if ([str hasPrefix: @"--GNU-Debug="])
[mySet addObject: [str substringFromIndex: 12]];
{
[mySet addObject: [str substringFromIndex: 12]];
}
}
_debug_set = mySet;
}