ext2fs.h (ext2fs_resize_mem): Fix C++ problem. (Addresses Red

Hat Bugzilla #112448; thanks Thomas Woerner from Red Hat.)
bitmap-optimize
Theodore Ts'o 2004-02-21 21:04:30 -05:00
parent 993aa11dc8
commit e47fd8414d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-02-21 Theodore Ts'o <tytso@mit.edu>
* ext2fs.h (ext2fs_resize_mem): Fix C++ problem. (Addresses Red
Hat Bugzilla #112448; thanks Thomas Woerner from Red Hat.)
2004-02-14 Theodore Ts'o <tytso@mit.edu>
* namei.c (follow_link): Correctly deal with symlinks that have

View File

@ -977,7 +977,7 @@ _INLINE_ errcode_t ext2fs_free_mem(void *ptr)
/*
* Resize memory
*/
_INLINE_ errcode_t ext2fs_resize_mem(unsigned long old_size EXT2FS_ATTR((unused)),
_INLINE_ errcode_t ext2fs_resize_mem(unsigned long EXT2FS_ATTR((unused)) old_size,
unsigned long size, void *ptr)
{
void *p;