diff options
author | Theodore Ts'o <tytso@mit.edu> | 2002-10-13 23:56:28 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2002-10-13 23:56:28 -0400 |
commit | 3e69906495d5898849a6154b0311b5d4a84a27ae (patch) | |
tree | 167feba63f4beea1d8fc2a4b153299f0c8f4e702 /lib | |
parent | 64aecc4dd35b48f66f452f06c49587c838990d39 (diff) | |
download | e2fsprogs-3e69906495d5898849a6154b0311b5d4a84a27ae.tar.gz |
Fix gcc -Wall nits.
Fix format bug if NLS is in use.
Add extra so that the info directory looks OK on OpenWall.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ext2fs/ChangeLog | 5 | ||||
-rw-r--r-- | lib/ext2fs/ext2fs.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog index 320643f5..3aea116e 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,3 +1,8 @@ +2002-10-13 Theodore Ts'o <tytso@mit.edu> + + * ext2fs.h: Add #include of header files necessary for ext2fs.h to + compile cleanly. + 2002-10-02 Theodore Y. Ts'o <tytso@mit.edu> * rw_bitmaps.c (ext2fs_write_block_bitmap, diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h index fa3eb63f..6f5bc478 100644 --- a/lib/ext2fs/ext2fs.h +++ b/lib/ext2fs/ext2fs.h @@ -52,12 +52,15 @@ extern "C" { #include <sys/types.h> #endif +#include <stdio.h> #include <stdlib.h> #if EXT2_FLAT_INCLUDES #include "e2_types.h" +#include "ext2_fs.h" #else #include <ext2fs/ext2_types.h> +#include <ext2fs/ext2_fs.h> #endif /* EXT2_FLAT_INCLUDES */ typedef __u32 ext2_ino_t; |