From patchwork Tue May 26 14:13:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marko Myllynen X-Patchwork-Id: 476487 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 A45321402B5 for ; Wed, 27 May 2015 00:13:21 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=sourceware.org header.i=@sourceware.org header.b=ddCdxwAB; 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:message-id:date:from:reply-to:mime-version:to :subject:content-type:content-transfer-encoding; q=dns; s= default; b=DntjZNr4LfSat0Tos2XpBmoJGZoESOOpfHJEVbQYH1MSBWpa11j7T Ub6+75Idb5tAfovutIlVxsuFMqONHR/u8RQJj4AMdJ+wRdrO4uiJEwJP3j3hMkHE AKO1V/njI5+Q8JALr4QDsdeeqF6w6RH0VZWbR5wzK/rvfI+dNwrs+Y= 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:message-id:date:from:reply-to:mime-version:to :subject:content-type:content-transfer-encoding; s=default; bh=l n6f2MD5baZiga9brWxqbP46z9s=; b=ddCdxwABemhJVXnLexGCaxWE33PGe0r0r f659N7SPQ+9BthcAX297Rzj/gvpt/zL63Uk1y3lcIIVVG+i32MsTCw03SmdVd1d8 dYsh1Pv1G7Iyrud5wRSzvxYX78tpBM6kdqNnkW4Ryssg1fj3vcIh43xApLLBTohp VyG37B+zEg= Received: (qmail 100785 invoked by alias); 26 May 2015 14:13:16 -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 100754 invoked by uid 89); 26 May 2015 14:13:16 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.5 required=5.0 tests=AWL, BAYES_20, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Message-ID: <55647F73.7040709@redhat.com> Date: Tue, 26 May 2015 17:13:07 +0300 From: Marko Myllynen Reply-To: myllynen@redhat.com User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: GNU C Library Subject: [PATCH] Fix monetary.h comment Hi, this should be obvious, please commit if looks to be ok. 2015-05-26 Marko Myllynen * stdlib/monetary.h: Fix comment. Thanks, diff --git a/stdlib/monetary.h b/stdlib/monetary.h index c0f254b..c78795b 100644 --- a/stdlib/monetary.h +++ b/stdlib/monetary.h @@ -42,7 +42,7 @@ extern ssize_t strfmon (char *__restrict __s, size_t __maxsize, #ifdef __USE_XOPEN2K8 # include -/* Formatting a monetary value according to the current locale. */ +/* Formatting a monetary value according to the given locale. */ extern ssize_t strfmon_l (char *__restrict __s, size_t __maxsize, __locale_t __loc, const char *__restrict __format, ...)