From 4d1793e25fd6691f8a2407d6d2dfb23809086ef0 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Mon, 27 Jun 2011 11:27:24 -0700 Subject: 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 Acked-by: Mike Frysinger Signed-off-by: Artem Bityutskiy --- ubi-utils/ubiattach.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ubi-utils/ubiattach.c') diff --git a/ubi-utils/ubiattach.c b/ubi-utils/ubiattach.c index 4f18e99..27e7c09 100644 --- a/ubi-utils/ubiattach.c +++ b/ubi-utils/ubiattach.c @@ -21,7 +21,6 @@ * Author: Artem Bityutskiy */ -#define PROGRAM_VERSION "1.1" #define PROGRAM_NAME "ubiattach" #include @@ -53,7 +52,7 @@ static struct args args = { .dev = NULL, }; -static const char doc[] = PROGRAM_NAME " version " PROGRAM_VERSION +static const char doc[] = PROGRAM_NAME " version " VERSION " - a tool to attach MTD device to UBI."; static const char optionsstr[] = @@ -129,7 +128,7 @@ static int parse_opt(int argc, char * const argv[]) exit(EXIT_SUCCESS); case 'V': - fprintf(stderr, "%s\n", PROGRAM_VERSION); + common_print_version(); exit(EXIT_SUCCESS); case ':': -- cgit v1.2.3