mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
fix to cmpile with older versions of C
This commit is contained in:
parent
9a055f93ad
commit
c4f3ae77fd
1 changed files with 2 additions and 1 deletions
|
@ -30,6 +30,7 @@ int main(int argc, char **argv, char **env)
|
|||
NSMutableString *payload;
|
||||
NSURLConnectionTest *testCase;
|
||||
BOOL debug = NO;
|
||||
int i;
|
||||
|
||||
testClass = [bundle principalClass]; // NSURLConnectionTest
|
||||
|
||||
|
@ -64,7 +65,7 @@ int main(int argc, char **argv, char **env)
|
|||
|
||||
// the extra dictionary with test case's parameters
|
||||
payload = [NSMutableString stringWithCapacity: 1024 * 128];
|
||||
for (int i = 0; i < 2000; i++)
|
||||
for (i = 0; i < 2000; i++)
|
||||
{
|
||||
[payload appendFormat:
|
||||
@"%09daaaaaaaaaabbbbbbbbbbcccccccccccdddddddddd\n",
|
||||
|
|
Loading…
Reference in a new issue