diff options
author | Theodore Ts'o <tytso@mit.edu> | 2003-01-25 00:26:48 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2003-01-25 00:26:48 -0500 |
commit | d3f917989badf78d1f97654e46d60d1f3d25cd17 (patch) | |
tree | 3db88887bbfb742fc83aa0f2a3dea1fc34545d2f /lib/ext2fs | |
parent | 3a1d6f3cc0f07070499beb7916f0c99de161eb7b (diff) | |
download | e2fsprogs-d3f917989badf78d1f97654e46d60d1f3d25cd17.tar.gz |
Fix gcc -Wall nits.
Diffstat (limited to 'lib/ext2fs')
-rw-r--r-- | lib/ext2fs/ChangeLog | 4 | ||||
-rw-r--r-- | lib/ext2fs/dirhash.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog index bd5b9e3b..2a1bce25 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,3 +1,7 @@ +2003-01-25 Theodore Ts'o <tytso@mit.edu> + + * dirhash.c: Fix gcc -Wall nits. + 2003-01-22 Theodore Ts'o <tytso@mit.edu> * unix_io.c (unix_write_blk): Fix up GCC -Wall nits. diff --git a/lib/ext2fs/dirhash.c b/lib/ext2fs/dirhash.c index 5e18d146..4d18593f 100644 --- a/lib/ext2fs/dirhash.c +++ b/lib/ext2fs/dirhash.c @@ -12,6 +12,7 @@ */ #include <stdio.h> +#include <string.h> #include "ext2_fs.h" #include "ext2fs.h" |