]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix monetary.h comment
authorMarko Myllynen <myllynen@redhat.com>
Wed, 27 May 2015 02:37:07 +0000 (08:07 +0530)
committerSiddhesh Poyarekar <siddhesh@redhat.com>
Wed, 27 May 2015 02:37:07 +0000 (08:07 +0530)
On 2015-05-26 21:24, Siddhesh Poyarekar wrote:
> On Tue, May 26, 2015 at 05:13:07PM +0300, Marko Myllynen wrote:
>> this should be obvious, please commit if looks to be ok.
>>
>> 2015-05-26  Marko Myllynen  <myllynen@redhat.com>
>>
>>  * stdlib/monetary.h: Fix comment.
>
> Patch didn't apply to master, but I've fixed it up and pushed it.

sorry about that (a whitespace hickup) - but your patch changed the
wrong comment, so here's a new patch to fix the fix.

ChangeLog
stdlib/monetary.h

index 4a38a056437e2a0542ab5078cb46048c0cd21a5b..52c29bc10f5cbdc7aace3312826ce2e06ee80bc4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-05-27  Marko Myllynen  <myllynen@redhat.com>
+
+       * stdlib/monetary.h: Fix comment.
+
 2015-05-26  Chris Metcalf  <cmetcalf@ezchip.com>
 
        * sysdeps/unix/sysv/linux/tile/sysdep.h (INLINE_SYSCALL):
index f3dafcdb6984f3fd2a24d4a9146fec43b0aa5c85..c78795bfdd215742293ea3011e831957d9f4bfea 100644 (file)
@@ -34,7 +34,7 @@ typedef __ssize_t ssize_t;
 
 __BEGIN_DECLS
 
-/* Formatting a monetary value according to the given locale.  */
+/* Formatting a monetary value according to the current locale.  */
 extern ssize_t strfmon (char *__restrict __s, size_t __maxsize,
                        const char *__restrict __format, ...)
      __THROW __attribute_format_strfmon__ (3, 4);
@@ -42,7 +42,7 @@ extern ssize_t strfmon (char *__restrict __s, size_t __maxsize,
 #ifdef __USE_XOPEN2K8
 # include <xlocale.h>
 
-/* 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, ...)