From owner-svn-src-all@FreeBSD.ORG Sat Jun 20 20:16:40 2015 Return-Path: Delivered-To: svn-src-all@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B9100810; Sat, 20 Jun 2015 20:16:40 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pd0-x230.google.com (mail-pd0-x230.google.com [IPv6:2607:f8b0:400e:c02::230]) (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 887835EF; Sat, 20 Jun 2015 20:16:40 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pdjn11 with SMTP id n11so112556787pdj.0; Sat, 20 Jun 2015 13:16:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=517H5nKpWRivv4kbalFoQ8wRi+dITwUIzFl7wMLUtoM=; b=lG6FqLzh9leQbNmdLhi1FGECVNJMmVQ2V1W3VGC1AuX96pQYLrr29+uvb3hRwwILWA doYxnzUWEhM6Sb95SO+pf38+o7fz34M8biqxPkZwhqgPeOECyXSUq1Ah7jdZlIOaJer6 FrPM02anUgaRNEtQTO3mmyeQs0thH+zEXYTgAsyTatb/CC42MpI2rtWUTxeGY7m2npCX xTY/Kv9cKzlKJ7WZxv/XBz5BvzGRcp6XBWy+70UfPj4LwaCZItfbTFk4ACXGeoi4pyuR Pen7+59gWlqm4gXFT5+VvAPNB0g1fB3SEIN2oKEhgtDr3bU1nXkiAcMFgIco4eqXy1xg fo9g== X-Received: by 10.66.141.48 with SMTP id rl16mr43220250pab.147.1434831399795; Sat, 20 Jun 2015 13:16:39 -0700 (PDT) Received: from ?IPv6:2601:602:8001:6c87:955f:edd5:f668:13c0? ([2601:602:8001:6c87:955f:edd5:f668:13c0]) by mx.google.com with ESMTPSA id ho10sm15023485pbc.27.2015.06.20.13.16.38 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 20 Jun 2015 13:16:39 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (1.0) Subject: Re: svn commit: r284644 - head/usr.sbin/fstyp From: Garrett Cooper X-Mailer: iPhone Mail (12F70) In-Reply-To: <201506201503.t5KF33Km091795@svn.freebsd.org> Date: Sat, 20 Jun 2015 13:16:36 -0700 Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: References: <201506201503.t5KF33Km091795@svn.freebsd.org> To: Allan Jude 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: Sat, 20 Jun 2015 20:16:40 -0000 > On Jun 20, 2015, at 08:03, Allan Jude wrote: >=20 > Author: allanjude (doc committer) > Date: Sat Jun 20 15:03:02 2015 > New Revision: 284644 > URL: https://svnweb.freebsd.org/changeset/base/284644 >=20 > Log: > Fix the build for gcc by lowering the WARNS level >=20 > Approved by: sbruno > X-MFC-With: r284589 >=20 > Modified: > head/usr.sbin/fstyp/Makefile >=20 > Modified: head/usr.sbin/fstyp/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D > --- head/usr.sbin/fstyp/Makefile Sat Jun 20 13:30:09 2015 (r284643) > +++ head/usr.sbin/fstyp/Makefile Sat Jun 20 15:03:02 2015 (r284644) > @@ -11,7 +11,7 @@ SRCS +=3D zfs.c >=20 > MAN=3D fstyp.8 >=20 > -WARNS=3D 6 > +WARNS?=3D 0 You could also guard it by COMPILER_TYPE. As others have stated though, fixi= ng the prototypes issues is relatively trivial...=