Date: Fri, 27 Nov 2009 03:58:21 +0000 (UTC) From: Maxim Sobolev <sobomax@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r199856 - head/sys/boot/i386/libi386 Message-ID: <200911270358.nAR3wLrf001391@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911270358.nAR3wLrf001391>