diff options
author | Theodore Ts'o <tytso@mit.edu> | 2005-12-31 01:28:33 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2005-12-31 01:28:33 -0500 |
commit | fd7ac1fc9889075885cd698ddd3287af6457c7be (patch) | |
tree | 788df204f2b35c88c9c88a74073fccbcbcd28d41 | |
parent | 57435fe3df09accc48acc5403fd9c0ae792d9c10 (diff) | |
download | e2fsprogs-fd7ac1fc9889075885cd698ddd3287af6457c7be.tar.gz e2fsprogs-fd7ac1fc9889075885cd698ddd3287af6457c7be.tar.xz e2fsprogs-fd7ac1fc9889075885cd698ddd3287af6457c7be.zip |
Fix incorrect location of prof_err.h in profile.c.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
-rw-r--r-- | e2fsck/Makefile.in | 4 | ||||
-rw-r--r-- | e2fsck/profile.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/e2fsck/Makefile.in b/e2fsck/Makefile.in index c173da74..04770803 100644 --- a/e2fsck/Makefile.in +++ b/e2fsck/Makefile.in @@ -394,6 +394,6 @@ region.o: $(srcdir)/region.c $(srcdir)/e2fsck.h \ $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \ $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \ $(srcdir)/profile.h prof_err.h -profile.o: $(srcdir)/profile.c $(top_builddir)/lib/ext2fs/prof_err.h \ - $(top_srcdir)/lib/et/com_err.h $(srcdir)/profile.h +profile.o: $(srcdir)/profile.c $(srcdir)/profile.h prof_err.h \ + $(top_srcdir)/lib/et/com_err.h prof_err.o: prof_err.c diff --git a/e2fsck/profile.c b/e2fsck/profile.c index f534886e..6f8aa5b4 100644 --- a/e2fsck/profile.c +++ b/e2fsck/profile.c @@ -67,10 +67,10 @@ #include <pwd.h> #endif -#include "ext2fs/prof_err.h" - #include "com_err.h" #include "profile.h" +#include "prof_err.h" + #define STAT_ONCE_PER_SECOND |