From owner-svn-src-all@freebsd.org Thu Oct 8 23:30:38 2015 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 391B99D2F7E; Thu, 8 Oct 2015 23:30:38 +0000 (UTC) (envelope-from mjguzik@gmail.com) Received: from mail-wi0-x235.google.com (mail-wi0-x235.google.com [IPv6:2a00:1450:400c:c05::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C7D291A32; Thu, 8 Oct 2015 23:30:37 +0000 (UTC) (envelope-from mjguzik@gmail.com) Received: by wicge5 with SMTP id ge5so46243489wic.0; Thu, 08 Oct 2015 16:30:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=vSbeEq2XGYVPr9b71Eq4OVZLndvAY3z6QwGWal1/5z4=; b=cDFZQkX48lHg0fjgp5MWdFdbAl+Bk3ySsorbuadsPn857s0iB1IGjX/8rXNwGsxytF 6xpFCp0+f/XqVmfk64oCSzMmDsWef1jNW6jvV/I9k0HBlNZNGFe3/d3KmwmMskuXiIBC k1QhyLsgTWZ/B6bjzDbAx4fdXpsv7em6UkvdNY0ADaycWn7tMKpcVN+nkbuwivYNFNJa JzXM1CnFp3v/s/Bw0QzKSl2Z2HWhvKX7evUZV2IzyfQU8E0mfht58KkHGMg69LwSFibD uK78YQk6bEt0Lj2zQpj4dLH3B9JI82OVI3I1Mhm1jdMaeDf9M040+IdmNHn7bseyjYUk Fjfg== X-Received: by 10.180.91.12 with SMTP id ca12mr6968607wib.4.1444347036047; Thu, 08 Oct 2015 16:30:36 -0700 (PDT) Received: from dft-labs.eu (n1x0n-1-pt.tunnel.tserv5.lon1.ipv6.he.net. [2001:470:1f08:1f7::2]) by smtp.gmail.com with ESMTPSA id t7sm9140025wib.1.2015.10.08.16.30.34 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 08 Oct 2015 16:30:35 -0700 (PDT) Date: Fri, 9 Oct 2015 01:30:33 +0200 From: Mateusz Guzik To: "Conrad E. Meyer" Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r289058 - head/sys/i386/linux Message-ID: <20151008233033.GA31205@dft-labs.eu> References: <201510082327.t98NRjeE049199@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201510082327.t98NRjeE049199@repo.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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: Thu, 08 Oct 2015 23:30:38 -0000 On Thu, Oct 08, 2015 at 11:27:45PM +0000, Conrad E. Meyer wrote: > Author: cem > Date: Thu Oct 8 23:27:45 2015 > New Revision: 289058 > URL: https://svnweb.freebsd.org/changeset/base/289058 > > Log: > Fix missing semi-colon from r289055. > > Obtained from: mjg > Sponsored by: EMC / Isilon Storage Division > > Modified: > head/sys/i386/linux/linux_sysvec.c > > Modified: head/sys/i386/linux/linux_sysvec.c > ============================================================================== > --- head/sys/i386/linux/linux_sysvec.c Thu Oct 8 21:52:20 2015 (r289057) > +++ head/sys/i386/linux/linux_sysvec.c Thu Oct 8 23:27:45 2015 (r289058) > @@ -866,7 +866,7 @@ linux_fetch_syscall_args(struct thread * > > if (sa->code >= p->p_sysent->sv_size) > /* nosys */ > - sa->callp = &p->p_sysent->sv_table[p->p_sysent->sv_size - 1] > + sa->callp = &p->p_sysent->sv_table[p->p_sysent->sv_size - 1]; > else > sa->callp = &p->p_sysent->sv_table[sa->code]; > sa->narg = sa->callp->sy_narg; Reported by: NGie Cooper -- Mateusz Guzik