[Ocfs2-commits] mfasheh commits r2539 - trunk/fs/ocfs2/cluster
svn-commits at oss.oracle.com
svn-commits at oss.oracle.com
Mon Aug 22 13:55:40 CDT 2005
Author: mfasheh
Signed-off-by: manish
Date: 2005-08-22 13:55:38 -0500 (Mon, 22 Aug 2005)
New Revision: 2539
Modified:
trunk/fs/ocfs2/cluster/heartbeat.c
Log:
* use tabs in o2hb_tv_subtract
Signed-off-by: manish
Modified: trunk/fs/ocfs2/cluster/heartbeat.c
===================================================================
--- trunk/fs/ocfs2/cluster/heartbeat.c 2005-08-22 18:54:28 UTC (rev 2538)
+++ trunk/fs/ocfs2/cluster/heartbeat.c 2005-08-22 18:55:38 UTC (rev 2539)
@@ -859,12 +859,12 @@
BUG_ON(a->tv_sec < b->tv_sec);
BUG_ON(a->tv_sec == b->tv_sec && a->tv_usec < b->tv_usec);
- a->tv_sec -= b->tv_sec;
- a->tv_usec -= b->tv_usec;
- while ( a->tv_usec < 0 ) {
- a->tv_sec--;
- a->tv_usec += 1000000;
- }
+ a->tv_sec -= b->tv_sec;
+ a->tv_usec -= b->tv_usec;
+ while ( a->tv_usec < 0 ) {
+ a->tv_sec--;
+ a->tv_usec += 1000000;
+ }
}
static unsigned int o2hb_elapsed_msecs(struct timeval *start,
More information about the Ocfs2-commits
mailing list