~ubuntu-branches/ubuntu/edgy/e2fsprogs/edgy-security

« back to all changes in this revision

Viewing changes to lib/ext2fs/rs_bitmap.c

  • Committer: Bazaar Package Importer
  • Author(s): Matt Zimmerman
  • Date: 2004-09-19 09:43:14 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040919094314-ypmsn0h1ke583yda
Tags: 1.35-6ubuntu1
Remove ext3-add-journal.sh script.  It overcomplicates the initrd setup,
and the only problem it solves is to prevent a visible /.journal

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
        new_size = ((new_real_end - bmap->start) / 8) + 1;
59
59
 
60
60
        if (size != new_size) {
61
 
                retval = ext2fs_resize_mem(size, new_size,
62
 
                                           (void **) &bmap->bitmap);
 
61
                retval = ext2fs_resize_mem(size, new_size, &bmap->bitmap);
63
62
                if (retval)
64
63
                        return retval;
65
64
        }