diff options
author | Brian Norris <computersforpeace@gmail.com> | 2011-06-27 11:27:24 -0700 |
---|---|---|
committer | Artem Bityutskiy <dedekind1@gmail.com> | 2011-06-29 08:42:40 +0300 |
commit | 4d1793e25fd6691f8a2407d6d2dfb23809086ef0 (patch) | |
tree | b4b4f89c6f195f57fcb38fc49771ba2865a89451 /jffs2dump.c | |
parent | e1e6889909bb1ffcde894f69efe307ed9a1a28a4 (diff) |
mtd-utils: switch more utils to unified versioning
More utilities now use the common VERSION system.
For utils that printed a very simple message, we use the new
common_print_version() "function."
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Artem Bityutskiy <dedekind1@gmail.com>
Diffstat (limited to 'jffs2dump.c')
-rw-r--r-- | jffs2dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jffs2dump.c b/jffs2dump.c index d093afc..9e13e98 100644 --- a/jffs2dump.c +++ b/jffs2dump.c @@ -15,7 +15,6 @@ */ #define PROGRAM_NAME "jffs2dump" -#define VERSION "$Revision: 1.10 $" #include <errno.h> #include <stdint.h> @@ -36,6 +35,7 @@ #include <getopt.h> #include <crc32.h> #include "summary.h" +#include "common.h" #define PAD(x) (((x)+3)&~3) |