diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-06-21 20:59:07 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-06-21 20:59:07 (GMT) |
commit | 18a656663a73a693cabf49d6f4858f7af311e6f5 (patch) | |
tree | 330352ae6f1ea7b53b70281231ec4e7f4c22e610 /tools/h5dump/h5dump.c | |
parent | e8309603cd45cdfa4c831e659c529f51b117ef39 (diff) | |
download | hdf5-18a656663a73a693cabf49d6f4858f7af311e6f5.zip hdf5-18a656663a73a693cabf49d6f4858f7af311e6f5.tar.gz hdf5-18a656663a73a693cabf49d6f4858f7af311e6f5.tar.bz2 |
[svn-r8714] *** empty log message ***
Diffstat (limited to 'tools/h5dump/h5dump.c')
-rw-r--r-- | tools/h5dump/h5dump.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index 57af6d7..9c50fbf 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -1068,7 +1068,7 @@ dump_dataspace(hid_t space) break; case H5S_NULL: - /* nulldataspace */ + /* null dataspace */ HDfprintf(stdout, "%s %s", dump_header_format->dataspacedescriptionbegin, S_NULL); break; @@ -4740,11 +4740,14 @@ xml_dump_dataspace(hid_t space) printf("</%sSimpleDataspace>\n", xmlnsprefix ); break; +#ifdef TMP + /* Commented out: wait until the schema is updated first */ case H5S_NULL: /* null dataspace (just a tag, no XML attrs. defined */ printf("<%sNullDataspace />\n",xmlnsprefix); break; +#endif /* TMP */ case H5S_COMPLEX: printf("<!-- not yet implemented -->\n"); |