X-Git-Url: https://git.sven.stormbind.net/?p=sven%2Fexfat-utils.git;a=blobdiff_plain;f=label%2Fmain.c;h=b219d4e658c3e56e797310f16dc5dda66745cf83;hp=33f04356eafa2d45f65e6b8c806204a0966fa053;hb=9420cfdeee25e4d97e7fc6f7cbb286e5089caccb;hpb=9c08378bfbf14696495ca8e3507d7f46daba8a3f diff --git a/label/main.c b/label/main.c index 33f0435..b219d4e 100644 --- a/label/main.c +++ b/label/main.c @@ -3,7 +3,7 @@ Prints or changes exFAT volume label. Free exFAT implementation. - Copyright (C) 2011-2014 Andrew Nayenko + Copyright (C) 2011-2015 Andrew Nayenko This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,9 +20,9 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include #include #include -#include int main(int argc, char* argv[]) { @@ -33,9 +33,8 @@ int main(int argc, char* argv[]) for (pp = argv + 1; *pp; pp++) if (strcmp(*pp, "-V") == 0) { - printf("exfatlabel %u.%u.%u\n", EXFAT_VERSION_MAJOR, - EXFAT_VERSION_MINOR, EXFAT_VERSION_PATCH); - puts("Copyright (C) 2011-2014 Andrew Nayenko"); + printf("exfatlabel %s\n", VERSION); + puts("Copyright (C) 2011-2015 Andrew Nayenko"); return 0; }