Chameleon

Chameleon Commit Details

Date:2014-11-03 19:51:14 (9 years 5 months ago)
Author:ErmaC
Commit:2464
Parents: 2463
Message:Rollback changes for msdos.c (2327) thx to bltz
Changes:
M/trunk/i386/libsaio/msdos.c
M/trunk/CHANGES

File differences

trunk/i386/libsaio/msdos.c
394394
395395
396396
397
398
397
398
399399
400400
401401
402402
403
404
403
404
405405
406406
407407
st->vfatchecksum = 0;
st->vfatnumber = 0;
st->nument++;
if (((int)(!st->root16 &&st->nument * sizeof (struct direntry))>=msdosclustersize)
|| ((int)(st->root16 &&st->nument * sizeof (struct direntry))>=msdosbps))
if ((!st->root16 &&st->nument * sizeof (struct direntry)>=msdosclustersize)
|| (st->root16 &&st->nument * sizeof (struct direntry)>=msdosbps))
st->nument = 0;
return dirp;
}
st->nument++;
if (((int)(!st->root16 &&st->nument * sizeof (struct direntry))>=msdosclustersize)
|| ((int)(st->root16 &&st->nument * sizeof (struct direntry))>=msdosbps))
if ((!st->root16 &&st->nument * sizeof (struct direntry)>=msdosclustersize)
|| (st->root16 &&st->nument * sizeof (struct direntry)>=msdosbps))
st->nument = 0;
}
}
trunk/CHANGES
1
12
23
34
- ErmaC : Rollback changes for msdos.c (2327) thx to bltz
- bitshoveler : Remove "-x" option from "ld" command which breaks build under newer Xcode versions (/i386/modules/MakeInc.dir)
- bitshoveler : Comment out some unused functions by expanding "#if UNUSED" conditional (stringTable.c)
- bitshoveler : Comment out unused static functions, which cause build to fail in "release" mode (vbe.c)

Archive Download the corresponding diff file

Revision: 2464