Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Aug 2010 08:19:23 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r211061 - head/lib/libcompat/4.1
Message-ID:  <201008080819.o788JNHN007091@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008080819.o788JNHN007091>