OSDN Git Service

ChangeLog, debugfs.c, debugfs.h:
authorTheodore Ts'o <tytso@mit.edu>
Tue, 26 Oct 1999 14:20:22 +0000 (14:20 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 26 Oct 1999 14:20:22 +0000 (14:20 +0000)
  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.

debugfs/ChangeLog
debugfs/debugfs.c
debugfs/debugfs.h
e2fsck/ChangeLog
e2fsck/message.c

index 8db0d63..86149af 100644 (file)
@@ -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
index 3b3ce55..14459bd 100644 (file)
@@ -34,6 +34,7 @@ extern int optreset;          /* defined by BSD, but not others */
 #include "ss/ss.h"
 #include "debugfs.h"
 #include "uuid/uuid.h"
+#include "e2p/e2p.h"
 
 #include "../version.h"
 
index 6ac13f9..f2917e1 100644 (file)
@@ -70,10 +70,4 @@ extern void do_mkdir(int argc, char **argv);
 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[]);
index c94de21..8665139 100644 (file)
@@ -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
index a129f86..87ce118 100644 (file)
@@ -135,7 +135,7 @@ static const char *special_inode_name[] =
  * 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;