summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2006-03-30 20:05:56 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2006-03-30 20:05:56 (GMT)
commit437418e7ca67f404b0529b07a79d1497e92462f0 (patch)
tree86ef23244f216dafdd6a06b0c2c6dcac7560cc99
parent72b16bcff9b9f96073c330ccd322196dd2c1883b (diff)
downloadhdf5-437418e7ca67f404b0529b07a79d1497e92462f0.zip
hdf5-437418e7ca67f404b0529b07a79d1497e92462f0.tar.gz
hdf5-437418e7ca67f404b0529b07a79d1497e92462f0.tar.bz2
[svn-r12182] Purpose: Change comment.
Description: Changed comment to better describe the code. Platforms tested: No test is needed.
-rw-r--r--test/dt_arith.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/dt_arith.c b/test/dt_arith.c
index 52673e1..2df3fd9 100644
--- a/test/dt_arith.c
+++ b/test/dt_arith.c
@@ -57,9 +57,10 @@ const char *FILENAME[] = {
};
/*
- * Count up or down depending on whether the machine is big endian or little
- * endian. If local variable `endian' is H5T_ORDER_BE then the result will
- * be I, otherwise the result will be Z-(I+1).
+ * Count up or down depending on whether the machine is big endian, little
+ * endian, or VAX (OpenVMS). If local variable `endian' is H5T_ORDER_BE then
+ * the result will be I, otherwise the result will be Z-(I+1). VAX is printed
+ * as little endian.
*/
#define ENDIAN(Z,I,E) (H5T_ORDER_BE==E?(I):(Z)-((I)+1))