summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-06-27 14:45:06 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-06-27 14:45:06 (GMT)
commit7be3afb278aea67ba09a97f4b41c0aaaf5c47983 (patch)
tree24ed86ab2a5c982fbf182d2ac8cd892c3813bc34 /fortran
parent8d72542a50fac7a747fe0bfec8d2285de8efd29f (diff)
downloadhdf5-7be3afb278aea67ba09a97f4b41c0aaaf5c47983.zip
hdf5-7be3afb278aea67ba09a97f4b41c0aaaf5c47983.tar.gz
hdf5-7be3afb278aea67ba09a97f4b41c0aaaf5c47983.tar.bz2
[svn-r12440] Purpose:
Code cleanup Description: Trim trailing whitespace in Makefile.am and C/C++ source files to make diffing changes easier. Platforms tested: None necessary, whitespace only change
Diffstat (limited to 'fortran')
-rw-r--r--fortran/src/H5match_types.c8
-rw-r--r--fortran/src/Makefile.am2
-rw-r--r--fortran/test/t.c4
3 files changed, 7 insertions, 7 deletions
diff --git a/fortran/src/H5match_types.c b/fortran/src/H5match_types.c
index 597f467..7d969ad 100644
--- a/fortran/src/H5match_types.c
+++ b/fortran/src/H5match_types.c
@@ -160,7 +160,7 @@ int main()
/* First, define c_int_x */
-#if defined H5_FORTRAN_HAS_INTEGER_1
+#if defined H5_FORTRAN_HAS_INTEGER_1
if(sizeof(long_long) == 1)
writeTypedef("long_long", 1);
else if(sizeof(long) == 1)
@@ -176,7 +176,7 @@ int main()
* is as close as we can get. */
#endif /*H5_FORTRAN_HAS_INTEGER_1 */
-#if defined H5_FORTRAN_HAS_INTEGER_2
+#if defined H5_FORTRAN_HAS_INTEGER_2
if(sizeof(long_long) == 2)
writeTypedef("long_long", 2);
else if(sizeof(long) == 2)
@@ -189,7 +189,7 @@ int main()
writeTypedefDefault(2);
#endif /*H5_FORTRAN_HAS_INTEGER_2 */
-#if defined H5_FORTRAN_HAS_INTEGER_4
+#if defined H5_FORTRAN_HAS_INTEGER_4
if(sizeof(long_long) == 4)
writeTypedef("long_long", 4);
else if(sizeof(long) == 4)
@@ -202,7 +202,7 @@ int main()
writeTypedefDefault(4);
#endif /*H5_FORTRAN_HAS_INTEGER_4 */
-#if defined H5_FORTRAN_HAS_INTEGER_8
+#if defined H5_FORTRAN_HAS_INTEGER_8
if(sizeof(long_long) == 8)
writeTypedef("long_long", 8);
else if(sizeof(long) == 8)
diff --git a/fortran/src/Makefile.am b/fortran/src/Makefile.am
index 2dee250..07f7b84 100644
--- a/fortran/src/Makefile.am
+++ b/fortran/src/Makefile.am
@@ -89,7 +89,7 @@ uninstall-local:
# Also install and uninstall (uninstall-local above) h5fc script
install-exec-local:
- @$(INSTALL) h5fc $(bindir)/$(H5FC_NAME)
+ @$(INSTALL) h5fc $(bindir)/$(H5FC_NAME)
# Install libhdf5_fortran.settings in lib directory
settingsdir=$(libdir)
diff --git a/fortran/test/t.c b/fortran/test/t.c
index 9eede1a..5c4286c 100644
--- a/fortran/test/t.c
+++ b/fortran/test/t.c
@@ -132,7 +132,7 @@ nh5_exit_c(int_f *status)
/*----------------------------------------------------------------------------
* Name: h5_group_revision_c
* Purpose: Checks if H5_GROUP_REVISION variable defined
- * Inputs:
+ * Inputs:
* Returns: 1 if defines, 0 otherwise
* Programmer: Elena Pourmal
* Saturday, May 13, 2006
@@ -142,7 +142,7 @@ int_f
nh5_group_revision_c()
{
int_f ret =0;
-#ifdef H5_GROUP_REVISION
+#ifdef H5_GROUP_REVISION
ret = 1;
#endif
return ret;