X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Modules%2FFilesystems%2FExt2%2Fwrite.c;h=5a7cfc023e1a4fdb67b927507a40d704ef461613;hb=b1873b4cff47aae8ada8cc303ea01b475cc7ccc8;hp=e52ebf75ece4286f772d4144d9d20a15ee2218fd;hpb=351dd3b194833c923bad0292e9019320fb2a41fa;p=tpg%2Facess2.git diff --git a/Modules/Filesystems/Ext2/write.c b/Modules/Filesystems/Ext2/write.c index e52ebf75..5a7cfc02 100644 --- a/Modules/Filesystems/Ext2/write.c +++ b/Modules/Filesystems/Ext2/write.c @@ -166,7 +166,7 @@ Uint32 Ext2_int_AllocateBlock(tExt2_Disk *Disk, Uint32 PrevBlock) } // Fast Check - if( bitmap[j/32] == -1 ) { + if( bitmap[j/32] == 0xFFFFFFFF ) { j = (j + 31) & ~31; continue; }