From owner-svn-src-head@FreeBSD.ORG Thu Feb 5 22:16:10 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 196EA106566C; Thu, 5 Feb 2009 22:16:10 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0865B8FC0A; Thu, 5 Feb 2009 22:16:10 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n15MG9pw040889; Thu, 5 Feb 2009 22:16:09 GMT (envelope-from sam@svn.freebsd.org) Received: (from sam@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n15MG9uV040888; Thu, 5 Feb 2009 22:16:09 GMT (envelope-from sam@svn.freebsd.org) Message-Id: <200902052216.n15MG9uV040888@svn.freebsd.org> From: Sam Leffler Date: Thu, 5 Feb 2009 22:16:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r188205 - head/tools/tools/ath/athstats X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Feb 2009 22:16:10 -0000 Author: sam Date: Thu Feb 5 22:16:09 2009 New Revision: 188205 URL: http://svn.freebsd.org/changeset/base/188205 Log: unbreak -o Modified: head/tools/tools/ath/athstats/main.c Modified: head/tools/tools/ath/athstats/main.c ============================================================================== --- head/tools/tools/ath/athstats/main.c Thu Feb 5 22:06:41 2009 (r188204) +++ head/tools/tools/ath/athstats/main.c Thu Feb 5 22:16:09 2009 (r188205) @@ -72,8 +72,7 @@ getfmt(const char *tag) for (i = 0; i < N(tags); i++) if (strcasecmp(tags[i].tag, tag) == 0) return tags[i].fmt; - errx(-1, "unknown tag \%s\"", tag); - /*NOTREACHED*/ + return tag; #undef N }