ChangeLog, debugfs.c, debugfs.h:
  debugfs.h: Add declaration for do_features()
  debugfs.c: Add #incldue of e2p.h to fix gcc warnings.
ChangeLog, message.c:
  message.c (safe_print): Make safe_print take an char instead of an
  	unsigned char to fix gcc warnings.

diff --git a/debugfs/ChangeLog b/debugfs/ChangeLog
index 8db0d63..86149af 100644
--- a/debugfs/ChangeLog
+++ b/debugfs/ChangeLog
@@ -1,3 +1,9 @@
+1999-10-26    <tytso@valinux.com>
+
+	* debugfs.h: Add declaration for do_features()
+
+	* debugfs.c: Add #incldue of e2p.h to fix gcc warnings.
+
 1999-10-25    <tytso@valinux.com>
 
 	* debugfs.c (do_dirty_filesys): Make the "dirty" command clear the
diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c
index 3b3ce55..14459bd 100644
--- a/debugfs/debugfs.c
+++ b/debugfs/debugfs.c
@@ -34,6 +34,7 @@
 #include "ss/ss.h"
 #include "debugfs.h"
 #include "uuid/uuid.h"
+#include "e2p/e2p.h"
 
 #include "../version.h"
 
diff --git a/debugfs/debugfs.h b/debugfs/debugfs.h
index 6ac13f9..f2917e1 100644
--- a/debugfs/debugfs.h
+++ b/debugfs/debugfs.h
@@ -70,10 +70,4 @@
 extern void do_rmdir(int argc, char **argv);
 extern void do_show_debugfs_params(int argc, char **argv);
 extern void do_expand_dir(int argc, char **argv);
-
-
-
-
-
-
-
+extern void do_features(int argc, char *argv[]);
diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog
index c94de21..8665139 100644
--- a/e2fsck/ChangeLog
+++ b/e2fsck/ChangeLog
@@ -1,3 +1,8 @@
+1999-10-26    <tytso@valinux.com>
+
+	* message.c (safe_print): Make safe_print take an char instead of
+		an unsigned char to fix gcc warnings.
+
 1999-10-25    <tytso@valinux.com>
 
 	* util.c: For NT portability, don't redefine getchar(), since
diff --git a/e2fsck/message.c b/e2fsck/message.c
index a129f86..87ce118 100644
--- a/e2fsck/message.c
+++ b/e2fsck/message.c
@@ -135,7 +135,7 @@
  * This function does "safe" printing.  It will convert non-printable
  * ASCII characters using '^' and M- notation.
  */
-static void safe_print(const unsigned char *cp, int len)
+static void safe_print(const char *cp, int len)
 {
 	unsigned char	ch;