mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Some NSInteger to NSUInteger changes to match return values
of methods OK Fred Kiefer git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35051 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
66499ebd49
commit
835817a415
3 changed files with 10 additions and 3 deletions
|
@ -127,7 +127,7 @@ static NSString *parse_string(NSString **ptr)
|
|||
NSMutableArray *update_list=[[NSMutableArray alloc] init];
|
||||
NSArray *lines;
|
||||
NSString *l;
|
||||
NSInteger i,c,pos;
|
||||
NSUInteger i,c,pos;
|
||||
NSMutableDictionary *dummy_entries=[[NSMutableDictionary alloc] init];
|
||||
|
||||
NSMutableString *user_comment=[[NSMutableString alloc] init];
|
||||
|
|
|
@ -39,7 +39,7 @@ void create_output(id propertyList)
|
|||
NSFileHandle *fileHandle = nil;
|
||||
NSProcessInfo *processInfo = [NSProcessInfo processInfo];
|
||||
NSArray *arguments = [processInfo arguments];
|
||||
NSInteger outputIndex = 0;
|
||||
NSUInteger outputIndex = 0;
|
||||
|
||||
// insert your code here
|
||||
outputIndex = [arguments indexOfObject: @"-output"];
|
||||
|
@ -94,7 +94,7 @@ NSData *read_input()
|
|||
NSFileHandle *fileHandle = nil;
|
||||
NSProcessInfo *processInfo = [NSProcessInfo processInfo];
|
||||
NSArray *arguments = [processInfo arguments];
|
||||
NSInteger inputIndex = 0;
|
||||
NSUInteger inputIndex = 0;
|
||||
|
||||
// insert your code here
|
||||
inputIndex = [arguments indexOfObject: @"-input"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue