summaryrefslogtreecommitdiffstats
path: root/test/tcheck_version.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/tcheck_version.c')
-rw-r--r--test/tcheck_version.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/tcheck_version.c b/test/tcheck_version.c
index a75d642..67c45fd 100644
--- a/test/tcheck_version.c
+++ b/test/tcheck_version.c
@@ -39,9 +39,9 @@ void parse(int ac, char **av);
void abort_intercept (int H5_ATTR_UNUSED sig);
/* global variables */
-unsigned major = H5_VERS_MAJOR;
-unsigned minor = H5_VERS_MINOR;
-unsigned release = H5_VERS_RELEASE;
+unsigned major = LT_VERS_INTERFACE;
+unsigned minor = LT_VERS_REVISION;
+unsigned release = LT_VERS_AGE;
void
showhelp(void)
@@ -50,9 +50,9 @@ showhelp(void)
printf("\t-h\tShow this page and version information\n");
printf("\t-t<vers>: Test by changing (adding 1 to) the <vers> to trigger\n");
printf("\t\t the warning. <vers> can be:\n");
- printf("\t\t\tM for Major version number (%d)\n", H5_VERS_MAJOR);
- printf("\t\t\tm for Minor version number (%d)\n", H5_VERS_MINOR);
- printf("\t\t\tr for Release number (%d)\n", H5_VERS_RELEASE);
+ printf("\t\t\tM for Major version number (%d)\n", LT_VERS_INTERFACE);
+ printf("\t\t\tm for Minor version number (%d)\n", LT_VERS_REVISION);
+ printf("\t\t\tr for Release number (%d)\n", LT_VERS_AGE);
}