r5625: Reformat (tidy).
authorJeremy Allison <jra@samba.org>
Wed, 2 Mar 2005 20:19:10 +0000 (20:19 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:55:51 +0000 (10:55 -0500)
(This used to be commit b94db3a75806f1b09a8a0366029812ba2195727c)

source3/locking/posix.c

index 6ab2ed377e2f998d55acb841aa0c321170f01d43..95d4518c172b417bde908eb819a02034a1f6be36 100644 (file)
@@ -563,9 +563,9 @@ static BOOL posix_lock_in_range(SMB_OFF_T *offset_out, SMB_OFF_T *count_out,
         * and the underlying system can handle 64 bit signed locks.
         */
 
-    SMB_OFF_T mask2 = ((SMB_OFF_T)0x4) << (SMB_OFF_T_BITS-4);
-    SMB_OFF_T mask = (mask2<<1);
-    SMB_OFF_T max_positive_lock_offset = ~mask;
+       SMB_OFF_T mask2 = ((SMB_OFF_T)0x4) << (SMB_OFF_T_BITS-4);
+       SMB_OFF_T mask = (mask2<<1);
+       SMB_OFF_T max_positive_lock_offset = ~mask;
 
 #else /* !LARGE_SMB_OFF_T || HAVE_BROKEN_FCNTL64_LOCKS */
 
@@ -575,7 +575,7 @@ static BOOL posix_lock_in_range(SMB_OFF_T *offset_out, SMB_OFF_T *count_out,
         * All offsets & counts must be 2^31 or less.
         */
 
-    SMB_OFF_T max_positive_lock_offset = 0x7FFFFFFF;
+       SMB_OFF_T max_positive_lock_offset = 0x7FFFFFFF;
 
 #endif /* !LARGE_SMB_OFF_T || HAVE_BROKEN_FCNTL64_LOCKS */