svn commit: r199856 - head/sys/boot/i386/libi386

Maxim Sobolev sobomax at FreeBSD.org
Fri Nov 27 03:58:21 UTC 2009


Author: sobomax
Date: Fri Nov 27 03:58:21 2009
New Revision: 199856
URL: http://svn.freebsd.org/changeset/base/199856

Log:
  Whitespace on: use tabs for identation consistently.

Modified:
  head/sys/boot/i386/libi386/spinconsole.c

Modified: head/sys/boot/i386/libi386/spinconsole.c
==============================================================================
--- head/sys/boot/i386/libi386/spinconsole.c	Fri Nov 27 03:55:42 2009	(r199855)
+++ head/sys/boot/i386/libi386/spinconsole.c	Fri Nov 27 03:58:21 2009	(r199856)
@@ -82,10 +82,10 @@ spinc_putchar(int c)
         static time_t lasttime;
 	time_t now;
 
-        now = time(NULL);
-        if (now < (lasttime + 1))
-            return;
-        lasttime = now;
+	now = time(NULL);
+	if (now < (lasttime + 1))
+		return;
+	lasttime = now;
 	get_pos(&curx, &cury);
 	if (curx > 0)
 		curs_move(&curx, &cury, curx - 1, cury);


More information about the svn-src-all mailing list