This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Complete display of LC_MONETARY


On Mon, Nov 18, 2013 at 05:41:09PM +0100, Andreas Schwab wrote:
> It needs an amendment, the C locale has a bad value for conversion_rate.
>
ok,  
> Andreas.
> 
>  static const char not_available[] = "\377";
> +static const uint32_t conversion_rate[] = { 1, 1 };
>  
>  const struct __locale_data _nl_C_LC_MONETARY attribute_hidden =
>  {
> @@ -74,7 +75,7 @@ const struct __locale_data _nl_C_LC_MONETARY attribute_hidden =
>      { .word = 99991231 },
>      { .word = 10101 },
>      { .word = 99991231 },
> -    { .word = 1 },
> +    { .string = (const char *) conversion_rate },
>      { .word = (unsigned int) L'\0' },

You could alternatively use .wstr which would not need a cast.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]