From owner-svn-src-head@FreeBSD.ORG Mon Oct 25 11:16:50 2010 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 D00B7106564A; Mon, 25 Oct 2010 11:16:50 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BEA278FC12; Mon, 25 Oct 2010 11:16:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PBGorO063078; Mon, 25 Oct 2010 11:16:50 GMT (envelope-from davidxu@svn.freebsd.org) Received: (from davidxu@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o9PBGoiY063076; Mon, 25 Oct 2010 11:16:50 GMT (envelope-from davidxu@svn.freebsd.org) Message-Id: <201010251116.o9PBGoiY063076@svn.freebsd.org> From: David Xu Date: Mon, 25 Oct 2010 11:16:50 +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: r214335 - head/lib/libthr/thread 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: Mon, 25 Oct 2010 11:16:50 -0000 Author: davidxu Date: Mon Oct 25 11:16:50 2010 New Revision: 214335 URL: http://svn.freebsd.org/changeset/base/214335 Log: Fix typo. Modified: head/lib/libthr/thread/thr_attr.c Modified: head/lib/libthr/thread/thr_attr.c ============================================================================== --- head/lib/libthr/thread/thr_attr.c Mon Oct 25 09:16:04 2010 (r214334) +++ head/lib/libthr/thread/thr_attr.c Mon Oct 25 11:16:50 2010 (r214335) @@ -143,7 +143,7 @@ _pthread_attr_get_np(pthread_t pthread, int ret; size_t cpusetsize; - if (pthread == NULL || dst_attr == NULL || (dst = *dstattr) == NULL) + if (pthread == NULL || dstattr == NULL || (dst = *dstattr) == NULL) return (EINVAL); cpusetsize = _get_kern_cpuset_size(); if (dst->cpusetsize < cpusetsize) {