diff options
Diffstat (limited to 'ubi-utils/mtdinfo.c')
-rw-r--r-- | ubi-utils/mtdinfo.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ubi-utils/mtdinfo.c b/ubi-utils/mtdinfo.c index bfd7e6d..ab00ce0 100644 --- a/ubi-utils/mtdinfo.c +++ b/ubi-utils/mtdinfo.c @@ -21,7 +21,6 @@ * Author: Artem Bityutskiy */ -#define PROGRAM_VERSION "1.1" #define PROGRAM_NAME "mtdinfo" #include <stdint.h> @@ -53,7 +52,7 @@ static struct args args = { .node = NULL, }; -static const char doc[] = PROGRAM_NAME " version " PROGRAM_VERSION +static const char doc[] = PROGRAM_NAME " version " VERSION " - a tool to print MTD information."; static const char optionsstr[] = @@ -125,7 +124,7 @@ static int parse_opt(int argc, char * const argv[]) exit(EXIT_SUCCESS); case 'V': - printf("%s\n", PROGRAM_VERSION); + common_print_version(); exit(EXIT_SUCCESS); case ':': |