summaryrefslogtreecommitdiffstats
path: root/src/H5VMprivate.h
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-09-24 14:57:21 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-09-24 14:57:21 (GMT)
commita117ac6caed2d4b13cf495ac90fece5be527f637 (patch)
treee52e00f2d6135688f572c43357235f2616b58325 /src/H5VMprivate.h
parent01482d93d478e995be55fe53445bf9aec7f18f6e (diff)
downloadhdf5-a117ac6caed2d4b13cf495ac90fece5be527f637.zip
hdf5-a117ac6caed2d4b13cf495ac90fece5be527f637.tar.gz
hdf5-a117ac6caed2d4b13cf495ac90fece5be527f637.tar.bz2
Fix comment formatting due to tabs conversion
Diffstat (limited to 'src/H5VMprivate.h')
-rw-r--r--src/H5VMprivate.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5VMprivate.h b/src/H5VMprivate.h
index 0c69ba6..56f48e0 100644
--- a/src/H5VMprivate.h
+++ b/src/H5VMprivate.h
@@ -204,7 +204,7 @@ H5VM_vector_zerop_u(int n, const hsize_t *v)
if (!v)
HGOTO_DONE(TRUE)
while (n--)
- if (*v++)
+ if (*v++)
HGOTO_DONE(FALSE)
done:
@@ -241,7 +241,7 @@ H5VM_vector_zerop_s(int n, const hssize_t *v)
if (!v)
HGOTO_DONE(TRUE)
while (n--)
- if (*v++)
+ if (*v++)
HGOTO_DONE(FALSE)
done:
@@ -530,9 +530,9 @@ static const unsigned char H5VM_bit_clear_g[8] = {0x7F, 0xBF, 0xDF, 0xEF, 0xF7,
*
* Purpose: Determine the value of the n'th bit in a buffer.
*
- * Note: No range checking on <offset> is performed!
+ * Note: No range checking on <offset> is performed!
*
- * Note #2: Bits are sequentially stored in the buffer, starting with bit
+ * Note #2: Bits are sequentially stored in the buffer, starting with bit
* offset 0 in the first byte's high-bit position, proceeding down
* to bit offset 7 in the first byte's low-bit position, then to
* bit offset 8 in the second byte's high-bit position, etc.
@@ -561,9 +561,9 @@ H5VM_bit_get(const unsigned char *buf, size_t offset)
*
* Purpose: Set/reset the n'th bit in a buffer.
*
- * Note: No range checking on <offset> is performed!
+ * Note: No range checking on <offset> is performed!
*
- * Note #2: Bits are sequentially stored in the buffer, starting with bit
+ * Note #2: Bits are sequentially stored in the buffer, starting with bit
* offset 0 in the first byte's high-bit position, proceeding down
* to bit offset 7 in the first byte's low-bit position, then to
* bit offset 8 in the second byte's high-bit position, etc.