summaryrefslogtreecommitdiffstats
path: root/src/H5CS.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-08-13 20:53:35 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-08-13 20:53:35 (GMT)
commit6b45f5172ccb4311e0be9ae15da3758abb6b0e67 (patch)
tree5a7a112fe7a8a98c6fecb45b513789d15962eb3d /src/H5CS.c
parent6562465a2c2a58cfbc2f47bf60bb538f7a783933 (diff)
downloadhdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.zip
hdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.tar.gz
hdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.tar.bz2
[svn-r11245] Purpose:
Code cleanup Description: Trim trailing whitespace, which is making 'diff'ing the two branches difficult. Solution: Ran this script in each directory: foreach f (*.[ch] *.cpp) sed 's/[[:blank:]]*$//' $f > sed.out && mv sed.out $f end Platforms tested: FreeBSD 4.11 (sleipnir) Too minor to require h5committest
Diffstat (limited to 'src/H5CS.c')
-rw-r--r--src/H5CS.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5CS.c b/src/H5CS.c
index 58817b8..63928dd 100644
--- a/src/H5CS.c
+++ b/src/H5CS.c
@@ -16,7 +16,7 @@
* Purpose: Provides internal function tracing in the form of a stack.
* The FUNC_ENTER() macro adds the function name to the function
* stack whenever a function is entered.
- * As the functions return with FUNC_LEAVE,
+ * As the functions return with FUNC_LEAVE,
* entries are removed from the stack.
*
* A function stack has a fixed maximum size. If this size is
@@ -112,10 +112,10 @@ H5FS_print(FILE *stream)
H5FS_t *fstack = H5FS_get_my_stack (); /* Get the correct function stack */
const int indent = 2; /* Indention level */
int i; /* Local index ariable */
-
+
/* Don't push this function on the function stack... :-) */
FUNC_ENTER_NOAPI_NOFUNC_NOFS(H5FS_print);
-
+
/* Sanity check */
assert(fstack);
@@ -136,7 +136,7 @@ H5FS_print(FILE *stream)
for (i=fstack->nused-1; i>=0; --i)
HDfprintf(stream, "%*s#%03d: Routine: %s\n", indent, "", i, fstack->slot[i]);
-
+
FUNC_LEAVE_NOAPI_NOFS(SUCCEED);
} /* end H5FS_print() */
@@ -160,7 +160,7 @@ herr_t
H5FS_push(const char *func_name)
{
H5FS_t *fstack = H5FS_get_my_stack ();
-
+
/* Don't push this function on the function stack... :-) */
FUNC_ENTER_NOAPI_NOFUNC_NOFS(H5FS_push);
@@ -174,7 +174,7 @@ H5FS_push(const char *func_name)
if (fstack->nused<H5FS_NSLOTS)
fstack->slot[fstack->nused] = func_name;
fstack->nused++;
-
+
FUNC_LEAVE_NOAPI_NOFS(SUCCEED);
} /* end H5FS_push() */
@@ -197,7 +197,7 @@ herr_t
H5FS_pop(void)
{
H5FS_t *fstack = H5FS_get_my_stack ();
-
+
/* Don't push this function on the function stack... :-) */
FUNC_ENTER_NOAPI_NOFUNC_NOFS(H5FS_pop);
@@ -207,7 +207,7 @@ H5FS_pop(void)
/* Pop the function. */
fstack->nused--;
-
+
FUNC_LEAVE_NOAPI_NOFS(SUCCEED);
} /* end H5FS_pop() */