[mpich2-commits] r7957 - mpich2/trunk/src/mpi/romio/adio/include
robl at mcs.anl.gov
robl at mcs.anl.gov
Mon Feb 14 13:48:04 CST 2011
Author: robl
Date: 2011-02-14 13:48:04 -0600 (Mon, 14 Feb 2011)
New Revision: 7957
Modified:
mpich2/trunk/src/mpi/romio/adio/include/adioi.h
Log:
missed a semicolon
Modified: mpich2/trunk/src/mpi/romio/adio/include/adioi.h
===================================================================
--- mpich2/trunk/src/mpi/romio/adio/include/adioi.h 2011-02-14 19:41:30 UTC (rev 7956)
+++ mpich2/trunk/src/mpi/romio/adio/include/adioi.h 2011-02-14 19:48:04 UTC (rev 7957)
@@ -666,17 +666,17 @@
# define ADIOI_WRITE_LOCK(fd, offset, whence, len) \
do {if (((fd)->file_system == ADIO_XFS) || ((fd)->file_system == ADIO_HFS)) \
ADIOI_Set_lock64((fd)->fd_sys, F_SETLKW64, F_WRLCK, offset, whence, len);\
- else ADIOI_Set_lock((fd)->fd_sys, F_SETLKW, F_WRLCK, offset, whence, len) } while (0)
+ else ADIOI_Set_lock((fd)->fd_sys, F_SETLKW, F_WRLCK, offset, whence, len); } while (0)
# define ADIOI_READ_LOCK(fd, offset, whence, len) \
do {if (((fd)->file_system == ADIO_XFS) || ((fd)->file_system == ADIO_HFS)) \
ADIOI_Set_lock64((fd)->fd_sys, F_SETLKW64, F_RDLCK, offset, whence, len);\
- else ADIOI_Set_lock((fd)->fd_sys, F_SETLKW, F_RDLCK, offset, whence, len) }while (0)
+ else ADIOI_Set_lock((fd)->fd_sys, F_SETLKW, F_RDLCK, offset, whence, len); }while (0)
# define ADIOI_UNLOCK(fd, offset, whence, len) \
do {if (((fd)->file_system == ADIO_XFS) || ((fd)->file_system == ADIO_HFS)) \
ADIOI_Set_lock64((fd)->fd_sys, F_SETLK64, F_UNLCK, offset, whence, len); \
- else ADIOI_Set_lock((fd)->fd_sys, F_SETLK, F_UNLCK, offset, whence, len) }while (0)
+ else ADIOI_Set_lock((fd)->fd_sys, F_SETLK, F_UNLCK, offset, whence, len); }while (0)
#elif (defined(ROMIO_NTFS))
More information about the mpich2-commits
mailing list