diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-10-13 15:11:02 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-10-13 15:11:02 (GMT) |
commit | aa88b36b52e8f0d71720df432ee363ec754aa9ca (patch) | |
tree | e05dc5ec34402bab0ff77b0434c1d263c6fcddb0 | |
parent | 478038d68d526d576f8338ec10475d5dd28f0e21 (diff) | |
download | hdf5-aa88b36b52e8f0d71720df432ee363ec754aa9ca.zip hdf5-aa88b36b52e8f0d71720df432ee363ec754aa9ca.tar.gz hdf5-aa88b36b52e8f0d71720df432ee363ec754aa9ca.tar.bz2 |
[svn-r1742] changed the name of the objectid macro to objid. conflicted with a windows
define
-rw-r--r-- | tools/h5dump.c | 2 | ||||
-rw-r--r-- | tools/h5tools.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c index 0c20cd4..fd4fcaa 100644 --- a/tools/h5dump.c +++ b/tools/h5dump.c @@ -1736,7 +1736,7 @@ dump_oid(hid_t oid){ indent += COL; indentation (indent); - printf ("%s %s ", OBJECTID, BEGIN); + printf ("%s %s ", OBJID, BEGIN); printf("%d", oid); printf (" %s\n", END); indent -= COL; diff --git a/tools/h5tools.h b/tools/h5tools.h index d962cee..5a85709 100644 --- a/tools/h5tools.h +++ b/tools/h5tools.h @@ -312,7 +312,7 @@ extern ProgType programtype; #define CTYPE "CTYPE" #define CONCATENATOR "//" #define DATASET "DATASET" -#define OBJECTID "OBJECTID" +#define OBJID "OBJECTID" #define BEGIN "{" #define END "}" #endif |