[Ext2resize-cvs] ext2resize/src ext2_resize.c,1.17,1.18
Status: Inactive
Brought to you by:
adilger
From: Coywolf Qi H. <co...@us...> - 2006-02-20 11:46:54
|
Update of /cvsroot/ext2resize/ext2resize/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26450/src Modified Files: ext2_resize.c Log Message: a grammar fix Index: ext2_resize.c =================================================================== RCS file: /cvsroot/ext2resize/ext2resize/src/ext2_resize.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** ext2_resize.c 9 May 2005 05:46:53 -0000 1.17 --- ext2_resize.c 20 Feb 2006 11:46:44 -0000 1.18 *************** *** 462,475 **** if (fs->newblocks == fs->sb.s_blocks_count) { ! fprintf(stderr, "%s: new size is same as current (%u)\n", fs->prog, fs->newblocks); return 1; } else { ! if(fs->flags & FL_SWAB_BYTES) { printf("Can't resize on big endian yet!\n"); return 0; } ! } ! if ((fs->relocator_pool = --- 462,476 ---- if (fs->newblocks == fs->sb.s_blocks_count) { ! fprintf(stderr, ! "%s: new size is the same as the current (%u)\n", fs->prog, fs->newblocks); return 1; } else { ! if (fs->flags & FL_SWAB_BYTES) { printf("Can't resize on big endian yet!\n"); return 0; } ! } ! if ((fs->relocator_pool = *************** *** 480,484 **** } fs->relocator_pool_end = fs->relocator_pool + ! (ext2_relocator_pool_size << 10); if (fs->newblocks < fs->sb.s_blocks_count) --- 481,485 ---- } fs->relocator_pool_end = fs->relocator_pool + ! (ext2_relocator_pool_size << 10); if (fs->newblocks < fs->sb.s_blocks_count) |