summaryrefslogtreecommitdiff
path: root/lib/libcompat
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2010-08-08 08:19:23 +0000
committerEd Schouten <ed@FreeBSD.org>2010-08-08 08:19:23 +0000
commit83dd4eeb788771ea5c84589291944d466d3e1794 (patch)
treeb6c5ee7b6d2502462e6e05f13dbe6c3266a86c2d /lib/libcompat
parent9fe5092de198a983de4ec5b24e1c6d95d900accb (diff)
downloadsrc-test-83dd4eeb788771ea5c84589291944d466d3e1794.tar.gz
src-test-83dd4eeb788771ea5c84589291944d466d3e1794.zip
Small style(9) fix: use tabs instead of spaces.
Notes
Notes: svn path=/head/; revision=211061
Diffstat (limited to 'lib/libcompat')
-rw-r--r--lib/libcompat/4.1/ftime.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/libcompat/4.1/ftime.c b/lib/libcompat/4.1/ftime.c
index e7be278dce817..f82100c69faf1 100644
--- a/lib/libcompat/4.1/ftime.c
+++ b/lib/libcompat/4.1/ftime.c
@@ -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);
}