diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-01-23 14:07:52 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-01-23 14:07:52 (GMT) |
commit | c2d20f62d46823b876660a0022e8ddc335500699 (patch) | |
tree | 175ba060849971a03e16617f328232830822f2ce /test | |
parent | be0a322db3a240c507c495659da764434832d9be (diff) | |
download | hdf5-c2d20f62d46823b876660a0022e8ddc335500699.zip hdf5-c2d20f62d46823b876660a0022e8ddc335500699.tar.gz hdf5-c2d20f62d46823b876660a0022e8ddc335500699.tar.bz2 |
[svn-r8101] Purpose:
Removed debug print statements committed by mistake.
Platforms tested:
eirene.
Diffstat (limited to 'test')
-rw-r--r-- | test/testframe.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/testframe.c b/test/testframe.c index af47dab..fb7100a 100644 --- a/test/testframe.c +++ b/test/testframe.c @@ -313,7 +313,6 @@ int SetTestVerbosity(int newval) */ void ParseTestVerbosity(char *argv) { - printf("argv = %s\n", argv); if (*argv == 'l') SetTestVerbosity(VERBO_LO); else if (*argv == 'm') @@ -322,7 +321,6 @@ void ParseTestVerbosity(char *argv) SetTestVerbosity(VERBO_HI); else SetTestVerbosity(atoi(argv)); - printf("Verbosity = %d\n", GetTestVerbosity()); } |