summaryrefslogtreecommitdiffstats
path: root/test/tcheck_version.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2015-10-09 20:05:25 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2015-10-09 20:05:25 (GMT)
commit62f73dfa865207f7b0336b08578cb273be3ce691 (patch)
tree104963d624448b0036fac38bcbbaae9bcd2c495a /test/tcheck_version.c
parent129c8840ae740afeab1013727614a76990c828ff (diff)
downloadhdf5-62f73dfa865207f7b0336b08578cb273be3ce691.zip
hdf5-62f73dfa865207f7b0336b08578cb273be3ce691.tar.gz
hdf5-62f73dfa865207f7b0336b08578cb273be3ce691.tar.bz2
[svn-r28016] Undo r28009 changes.
Tested: jam.
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 67c45fd..a75d642 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 = LT_VERS_INTERFACE;
-unsigned minor = LT_VERS_REVISION;
-unsigned release = LT_VERS_AGE;
+unsigned major = H5_VERS_MAJOR;
+unsigned minor = H5_VERS_MINOR;
+unsigned release = H5_VERS_RELEASE;
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", 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);
+ 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);
}