summaryrefslogtreecommitdiffstats
path: root/src/H5S.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-08-02 17:51:50 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-08-02 17:51:50 (GMT)
commitdaa96590d313494fa24279e12727c2e9586025a1 (patch)
treedf5b414dff0fbbf0d9615c3cc810f1b240f9f843 /src/H5S.c
parent084ed881372d1e5f04f6f3078ced33503d206392 (diff)
downloadhdf5-daa96590d313494fa24279e12727c2e9586025a1.zip
hdf5-daa96590d313494fa24279e12727c2e9586025a1.tar.gz
hdf5-daa96590d313494fa24279e12727c2e9586025a1.tar.bz2
[svn-r8987] Purpose:
Code cleanup Description: Fix another batch of minor differences between the development and release branches. Platforms tested: FreeBSD 4.10 (sleipnir) w/parallel Too minor to require h5committest
Diffstat (limited to 'src/H5S.c')
-rw-r--r--src/H5S.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/H5S.c b/src/H5S.c
index 70e8b55..3a8a799 100644
--- a/src/H5S.c
+++ b/src/H5S.c
@@ -23,14 +23,14 @@
#define PABLO_MASK H5S_mask
#define _H5S_IN_H5S_C
-#include "H5private.h" /* Generic Functions */
-#include "H5Eprivate.h" /* Error handling */
-#include "H5Fpkg.h" /* Dataspace functions */
-#include "H5FLprivate.h" /* Free Lists */
-#include "H5Iprivate.h" /* ID Functions */
-#include "H5MMprivate.h" /* Memory Management functions */
-#include "H5Oprivate.h" /* object headers */
-#include "H5Spkg.h" /* Dataspace functions */
+#include "H5private.h" /* Generic Functions */
+#include "H5Eprivate.h" /* Error handling */
+#include "H5Fpkg.h" /* File access */
+#include "H5FLprivate.h" /* Free lists */
+#include "H5Iprivate.h" /* IDs */
+#include "H5MMprivate.h" /* Memory management */
+#include "H5Oprivate.h" /* Object headers */
+#include "H5Spkg.h" /* Dataspaces */
/* Local macro definitions */
#define H5S_ENCODE_VERSION 0
@@ -1375,7 +1375,7 @@ H5S_set_extent_simple (H5S_t *space, unsigned rank, const hsize_t *dims,
HDmemcpy(space->extent.max, max, sizeof(hsize_t) * rank);
} /* end if */
else {
- space->extent.max = NULL;
+ space->extent.max = NULL;
}
}
@@ -1807,7 +1807,7 @@ done:
*
*-------------------------------------------------------------------------
*/
-herr_t
+static herr_t
H5S_encode(H5S_t *obj, unsigned char *buf, size_t *nalloc)
{
size_t extent_size;
@@ -1928,7 +1928,7 @@ done:
*
*-------------------------------------------------------------------------
*/
-H5S_t*
+static H5S_t*
H5S_decode(const unsigned char *buf)
{
H5S_t *ds;
@@ -2198,7 +2198,7 @@ done:
* by H5Sset_extent_simple() ). Helps avoid write errors.
*
* Return: TRUE if dataspace has extent set
- * FALSE if dataspace's extent is uninitialized
+ * FALSE if dataspace's extent is uninitialized
*
* Programmer: James Laird
*