From owner-svn-src-head@FreeBSD.ORG Tue Feb 1 22:50:23 2011 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 BD31A10656A3; Tue, 1 Feb 2011 22:50:23 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AC7208FC24; Tue, 1 Feb 2011 22:50:23 +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 p11MoNBu087804; Tue, 1 Feb 2011 22:50:23 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p11MoNCm087802; Tue, 1 Feb 2011 22:50:23 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201102012250.p11MoNCm087802@svn.freebsd.org> From: Warner Losh Date: Tue, 1 Feb 2011 22:50:23 +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: r218179 - head/lib/csu/mips 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: Tue, 01 Feb 2011 22:50:23 -0000 Author: imp Date: Tue Feb 1 22:50:23 2011 New Revision: 218179 URL: http://svn.freebsd.org/changeset/base/218179 Log: Whitespace nit Modified: head/lib/csu/mips/crt1.c Modified: head/lib/csu/mips/crt1.c ============================================================================== --- head/lib/csu/mips/crt1.c Tue Feb 1 22:26:06 2011 (r218178) +++ head/lib/csu/mips/crt1.c Tue Feb 1 22:50:23 2011 (r218179) @@ -83,7 +83,7 @@ __start(char **ap, argv = ap + 1; env = ap + 2 + argc; environ = env; - if(argc > 0 && argv[0] != NULL) { + if (argc > 0 && argv[0] != NULL) { const char *s; __progname = argv[0]; for (s = __progname; *s != '\0'; s++)