From owner-svn-src-head@FreeBSD.ORG Fri Nov 27 03:58:21 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0BE5106566B; Fri, 27 Nov 2009 03:58:21 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 901668FC17; Fri, 27 Nov 2009 03:58:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nAR3wLto001393; Fri, 27 Nov 2009 03:58:21 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nAR3wLrf001391; Fri, 27 Nov 2009 03:58:21 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200911270358.nAR3wLrf001391@svn.freebsd.org> From: Maxim Sobolev Date: Fri, 27 Nov 2009 03:58:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r199856 - head/sys/boot/i386/libi386 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Nov 2009 03:58:21 -0000 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);