]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
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 6e3c0d4bd1f9ee241868d22d043a61b02069d3e9..f90d2b20f5f15d81b86b6ceb7803bee1b04b76bf 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 92f273ebd06920de02c0333175041492357fb133..2536c9200cbe47e22d1ac35c0c54bfcb1bb2a9ca 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;