svn commit: r211061 - head/lib/libcompat/4.1

Ed Schouten ed at FreeBSD.org
Sun Aug 8 08:19:24 UTC 2010


Author: ed
Date: Sun Aug  8 08:19:23 2010
New Revision: 211061
URL: http://svn.freebsd.org/changeset/base/211061

Log:
  Small style(9) fix: use tabs instead of spaces.

Modified:
  head/lib/libcompat/4.1/ftime.c

Modified: head/lib/libcompat/4.1/ftime.c
==============================================================================
--- head/lib/libcompat/4.1/ftime.c	Sun Aug  8 07:34:37 2010	(r211060)
+++ head/lib/libcompat/4.1/ftime.c	Sun Aug  8 08:19:23 2010	(r211061)
@@ -39,15 +39,15 @@ static char rcsid[] = "$FreeBSD$";
 int
 ftime(struct timeb *tbp)
 {
-        struct timezone tz;
-        struct timeval t;
+	struct timezone tz;
+	struct timeval t;
 
-        if (gettimeofday(&t, &tz) < 0)
-                return (-1);
-        tbp->millitm = t.tv_usec / 1000;
-        tbp->time = t.tv_sec;
-        tbp->timezone = tz.tz_minuteswest;
-        tbp->dstflag = tz.tz_dsttime;
+	if (gettimeofday(&t, &tz) < 0)
+		return (-1);
+	tbp->millitm = t.tv_usec / 1000;
+	tbp->time = t.tv_sec;
+	tbp->timezone = tz.tz_minuteswest;
+	tbp->dstflag = tz.tz_dsttime;
 
 	return (0);
 }


More information about the svn-src-all mailing list