Whamcloud - gitweb
ext2fs.h (ext2fs_resize_mem): Fix C++ problem. (Addresses Red
authorTheodore Ts'o <tytso@mit.edu>
Sun, 22 Feb 2004 02:04:30 +0000 (21:04 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Sun, 22 Feb 2004 02:04:30 +0000 (21:04 -0500)
Hat Bugzilla #112448; thanks Thomas Woerner from Red Hat.)

lib/ext2fs/ChangeLog
lib/ext2fs/ext2fs.h

index 6e3c0d4..f90d2b2 100644 (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
index 92f273e..2536c92 100644 (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;