From owner-freebsd-current@FreeBSD.ORG Sat Aug 16 16:35:10 2008 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89E9D1065671 for ; Sat, 16 Aug 2008 16:35:10 +0000 (UTC) (envelope-from rohit.trip@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.224]) by mx1.freebsd.org (Postfix) with ESMTP id 549BE8FC14 for ; Sat, 16 Aug 2008 16:35:10 +0000 (UTC) (envelope-from rohit.trip@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so2236951rvf.43 for ; Sat, 16 Aug 2008 09:35:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=YOS6cuy6pOj9VwAMy0uC4qOWLPnHhYV/ig/Rr1SQDu0=; b=BPdPC5VCsnfoOyNlHZ9eOW3U0uabyIcRsQLWP8zCgHOXw3F0OBiGyU2BU2p9Ju5t5I KpoNY78kN72X1/qp+JF8nCljfxFepUzN5kb1AmarvtxTqWdPyr5WyawwwI4pOXXbPsVv v+f4K37H6Ofl2+KTsNqzlLchuXUzwZxImKv74= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=L9Tb3wUqPcyYIVThMPfr4rEXQJWbOWY04ZRKLQDyeizodurbsT3Q3E4qlBmfMsRbvu Dt++WhGY+jy+4yfb5lX/yMJrYO3ZqsyDDu9vGHjGfZkdVFJlvuGCl5oZwI/xf7vaXb08 lTJ4eCKJgdebD1TZ3aAmy52RhgNdCBnBcBbZk= Received: by 10.141.113.6 with SMTP id q6mr2221034rvm.36.1218904509654; Sat, 16 Aug 2008 09:35:09 -0700 (PDT) Received: by 10.141.42.5 with HTTP; Sat, 16 Aug 2008 09:35:09 -0700 (PDT) Message-ID: <33615c8e0808160935r377566a2k3df1d256526f56f@mail.gmail.com> Date: Sat, 16 Aug 2008 12:35:09 -0400 From: "Rohit Tripathi" To: freebsd-current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: uninitialized "width" in st_parse.c ? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2008 16:35:10 -0000 I found a build error under cddl/contrib/opensolaris/tools/ctf/cvt and saw that width (line 779) was declared but not initialized. Is this intentional? After setting it to 64 the build proceeded fine. -Rohit