diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-07-23 16:38:46 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-07-23 16:38:46 (GMT) |
commit | cacc659216de7a2d78ad009fff0472bc9c30e805 (patch) | |
tree | 064fe061efcfdfc640895e1e5efc770182525a8f /tools | |
parent | 7f2a3a97c3d157946319ba1e656cff54fb0cbbd0 (diff) | |
download | hdf5-cacc659216de7a2d78ad009fff0472bc9c30e805.zip hdf5-cacc659216de7a2d78ad009fff0472bc9c30e805.tar.gz hdf5-cacc659216de7a2d78ad009fff0472bc9c30e805.tar.bz2 |
[svn-r13998]
typo fixes in error messages
tested: linux
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/h5import/h5import.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5import/h5import.c b/tools/h5import/h5import.c index bfa2c82..c25842e 100755 --- a/tools/h5import/h5import.c +++ b/tools/h5import/h5import.c @@ -345,7 +345,7 @@ readIntegerData(FILE **strm, struct Input *in) int j; const char *err1 = "Unable to get integer value from file.\n"; - const char *err2 = "Unrecongnized input class type.\n"; + const char *err2 = "Unrecognized input class type.\n"; const char *err3 = "Invalid input size.\n"; for (j=0; j<in->rank;j++) @@ -508,7 +508,7 @@ readUIntegerData(FILE **strm, struct Input *in) hsize_t i; int j; const char *err1 = "Unable to get unsigned integer value from file.\n"; - const char *err2 = "Unrecongnized input class type.\n"; + const char *err2 = "Unrecognized input class type.\n"; const char *err3 = "Invalid input size.\n"; for (j=0; j<in->rank;j++) @@ -666,7 +666,7 @@ readFloatData(FILE **strm, struct Input *in) hsize_t i; int j; const char *err1 = "Unable to get integer value from file.\n"; - const char *err2 = "Unrecongnized input class type.\n"; + const char *err2 = "Unrecognized input class type.\n"; const char *err3 = "Invalid input size type.\n"; for (j=0; j<in->rank;j++) |