mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Tidied for gcc-3.4
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@15476 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
89c0d389fd
commit
9e7fe6bf12
50 changed files with 2888 additions and 1775 deletions
|
@ -832,8 +832,8 @@ wordData(NSString *word)
|
|||
src++;
|
||||
if (ctxt->state != ChunkSize)
|
||||
{
|
||||
int val = 0;
|
||||
int index;
|
||||
unsigned int val = 0;
|
||||
unsigned int index;
|
||||
|
||||
for (index = 0; index < ctxt->pos; index++)
|
||||
{
|
||||
|
@ -2752,7 +2752,7 @@ static NSCharacterSet *tokenSet = nil;
|
|||
NSData *d = [[self name] dataUsingEncoding: NSASCIIStringEncoding];
|
||||
unsigned l = [d length];
|
||||
char buf[l];
|
||||
int i = 0;
|
||||
unsigned int i = 0;
|
||||
BOOL conv = YES;
|
||||
|
||||
#define LIM 120
|
||||
|
|
|
@ -3100,7 +3100,8 @@ fatalErrorFunction(void *ctx, const char *msg, ...)
|
|||
xmlNode *node;
|
||||
GSXMLNode *n;
|
||||
|
||||
node = xmlXPathNodeSetItem (((xmlXPathObject*)_lib)->nodesetval, index);
|
||||
node = xmlXPathNodeSetItem (((xmlXPathObject*)_lib)->nodesetval,
|
||||
(int)index);
|
||||
n = [GSXMLNode alloc];
|
||||
|
||||
return [n _initFrom: node parent: self];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue