From owner-freebsd-current@FreeBSD.ORG Sat Feb 28 21:25:40 2015 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0B4C0363 for ; Sat, 28 Feb 2015 21:25:40 +0000 (UTC) Received: from mail-ig0-x229.google.com (mail-ig0-x229.google.com [IPv6:2607:f8b0:4001:c05::229]) (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 C9079AB9 for ; Sat, 28 Feb 2015 21:25:39 +0000 (UTC) Received: by igdh15 with SMTP id h15so8689157igd.4 for ; Sat, 28 Feb 2015 13:25:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=0qE1rWiKGEEtvYZyR3uMbLjye5Lr4UB5FktQnUucRoA=; b=Oy8cdPvXrJSBX/3HUgULAjQJEtxbX+ll1VNfxOomAaDG9Iw8AWqFt28RtAKLsnlL74 qgYwtY+Et0lWQU1dlCn/JUBixwHN64O/ecAtlSBslZ37JyDq3JMW+VLC6EdJt3Sk7TrJ wjwvEaqfZzpQZUNiB3yCS71QLxzIsMQ07CPUDyWWymqCrErxQIm8EFl/1YfiYJgYzmDT 3Hl5i5JIrL55x4qnnsGwiIBpHkDu+74b+2Eyx3i3biHzBz9sfl6neF6Mr2ulUYXzFa+a bBfrT3rV8Chy1/k7eVwN1Ev8dhsUC/osIZ3m9W7nQeF/742mE4lSW3vZpLKVZy0JKa7X G9IA== MIME-Version: 1.0 X-Received: by 10.42.150.130 with SMTP id a2mr23017156icw.69.1425158739378; Sat, 28 Feb 2015 13:25:39 -0800 (PST) Received: by 10.107.156.75 with HTTP; Sat, 28 Feb 2015 13:25:39 -0800 (PST) Date: Sat, 28 Feb 2015 16:25:39 -0500 Message-ID: Subject: atkbd.c not compiling? From: Ryan Stone To: FreeBSD Current Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18-1 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, 28 Feb 2015 21:25:40 -0000 I updated my source tree this morning and now I'm seeing this compile error in "make tinderbox"; /repos/users/rstone/freebsd/sys/dev/atkbdc/atkbd.c:382:26: error: use of undecla red identifier 'key_map'; did you mean 'keymap'? keymap = malloc(sizeof(key_map), M_DEVBUF, M_NOWAIT); ^~~~~~~ keymap /repos/users/rstone/freebsd/sys/dev/atkbdc/atkbd.c:358:12: note: 'keymap' declar ed here keymap_t *keymap; /repos/users/rstone/freebsd/sys/dev/atkbdc/atkbd.c:383:26: error: use of undecla red identifier 'accent_map'; did you mean 'accentmap_t'? accmap = malloc(sizeof(accent_map), M_DEVBUF, M_NOWAIT); ^ /repos/users/rstone/freebsd/sys/sys/kbio.h:210:26: note: 'accentmap_t' declared here typedef struct accentmap accentmap_t; (By the way, this is the second time in two days that "make tinderbox" has been broken for me. It's extremely frustrating that I can't test my pending commits because others haven't done me the same courtesy)