From owner-svn-src-all@freebsd.org Tue Dec 12 09:46:54 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE3DFE92F2D; Tue, 12 Dec 2017 09:46:54 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8C9F742BB; Tue, 12 Dec 2017 09:46:54 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBC9kr5c075726; Tue, 12 Dec 2017 09:46:53 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC9krNL075725; Tue, 12 Dec 2017 09:46:53 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201712120946.vBC9krNL075725@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 12 Dec 2017 09:46:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r326792 - head/stand/uboot/common X-SVN-Group: head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/stand/uboot/common X-SVN-Commit-Revision: 326792 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Dec 2017 09:46:55 -0000 Author: antoine Date: Tue Dec 12 09:46:53 2017 New Revision: 326792 URL: https://svnweb.freebsd.org/changeset/base/326792 Log: Attempt to unbreak buildworld Modified: head/stand/uboot/common/main.c Modified: head/stand/uboot/common/main.c ============================================================================== --- head/stand/uboot/common/main.c Tue Dec 12 06:56:21 2017 (r326791) +++ head/stand/uboot/common/main.c Tue Dec 12 09:46:53 2017 (r326792) @@ -500,7 +500,7 @@ main(int argc, char **argv) archsw.arch_readin = uboot_readin; archsw.arch_autoload = uboot_autoload; - interact(NULL); /* doesn't return */ + interact(); /* doesn't return */ return (0); }