Bruno Haible wrote:
> Jim Meyering wrote:
>> @@ -77,7 +77,7 @@ main (int argc, char **argv)
>>
>>if (STREQ (delim, "\\0"))
>> {
>> - delim = "";
>> + delim = (char *) "";
>>delim_len = 1;
>> }
>>
>
> Instead of introducing this cast, how about making 'delim' a 'const
Jim Meyering wrote:
> @@ -77,7 +77,7 @@ main (int argc, char **argv)
>
>if (STREQ (delim, "\\0"))
> {
> - delim = "";
> + delim = (char *) "";
>delim_len = 1;
> }
>
Instead of introducing this cast, how about making 'delim' a 'const char *'?
I see no code that wri