From patchwork Tue Jul 14 14:58:28 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 495113 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 5748314076D for ; Wed, 15 Jul 2015 00:58:42 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b=VDFk9MbC; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; q=dns; s= default; b=QRxqM3/yXcl6imCH0wh5RmrVt3CiWM+vAl+9+mtmbLkpVRVPDmZOl x+yWAUatHtWDh7CoDlUUQwJlnSVoarrHHrPqMuljKkPEbbTF4GTiypkaEM56xNQB qwRXueqDbM5Lao8jMGQPNXx2CD7/Yj4CvX2f+hCtamcVeuA2C4D81M= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; s=default; bh=ZELXtZvvE4+Ykwe6vhgbESAnUXY=; b=VDFk9MbC35XxTdfXSv2rlNUgTWqy AB6NnVGEFyimARfH97SWxcqkmH4LdeMeTaEasn21TPpUc3tbfrNdChD/dKcJlZfS S5lFKQetcbDQVO8KwRZHyFHa7wAPKoEd7UzDPaKu4gZrtwAbQbz+Z8DtIRJGR+Ek KA2xFsFw4ppB3Tg= Received: (qmail 12279 invoked by alias); 14 Jul 2015 14:58:36 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 12267 invoked by uid 89); 14 Jul 2015 14:58:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.8 required=5.0 tests=AWL, BAYES_40, KAM_LAZY_DOMAIN_SECURITY, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com From: "Siddhesh Poyarekar" To: libc-alpha@sourceware.org Subject: [COMMITTED PATCH] Fix up typo in tst-tls-atexit Date: Tue, 14 Jul 2015 20:28:28 +0530 Message-Id: <1436885908-15274-1-git-send-email-siddhesh@redhat.com> Pushed as obvious. --- ChangeLog | 4 ++++ stdlib/tst-tls-atexit.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index aff46a9..120588a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-07-14 Siddhesh Poyarekar + + * stdlib/tst-tls-atexit.c (do_test): Fix typo. + 2015-07-14 Adhemerval Zanella * elf/Makefile [ifeq (yes,$(build-shared)) (tests)] (tst-nodelete): diff --git a/stdlib/tst-tls-atexit.c b/stdlib/tst-tls-atexit.c index 974264d..0c6c499 100644 --- a/stdlib/tst-tls-atexit.c +++ b/stdlib/tst-tls-atexit.c @@ -72,7 +72,7 @@ do_test (void) if ((ret = pthread_join (t, &thr_ret)) != 0) { - printf ("pthread_create failed: %s\n", strerror (ret)); + printf ("pthread_join failed: %s\n", strerror (ret)); return 1; }