socsvn commit: r238503 - in soc2012/gmiller/locking-head: . lib/libwitness

gmiller at FreeBSD.org gmiller at FreeBSD.org
Thu Jun 28 20:01:37 UTC 2012


Author: gmiller
Date: Thu Jun 28 20:01:36 2012
New Revision: 238503
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=238503

Log:
   r238484 at FreeBSD-dev:  root | 2012-06-20 04:24:28 -0500
   Style fix for return values.

Modified:
  soc2012/gmiller/locking-head/   (props changed)
  soc2012/gmiller/locking-head/lib/libwitness/wrappers.c

Modified: soc2012/gmiller/locking-head/lib/libwitness/wrappers.c
==============================================================================
--- soc2012/gmiller/locking-head/lib/libwitness/wrappers.c	Thu Jun 28 20:01:25 2012	(r238502)
+++ soc2012/gmiller/locking-head/lib/libwitness/wrappers.c	Thu Jun 28 20:01:36 2012	(r238503)
@@ -42,7 +42,7 @@
 		add_lock(mutex);
 	}
 
-	return ret;
+	return (ret);
 }
 
 int
@@ -55,5 +55,5 @@
 		remove_lock(mutex);
 	}
 
-	return ret;
+	return (ret);
 }


More information about the svn-soc-all mailing list