Hi Cliff,
> On Sun, 22 Jul 2001, Ryan Bloom wrote:
>> I will fix the bug by just using sizeof("(none)") in the code and
>> commit today. Also, C++ comments can really mess up some C compilers.
>> In the future, please only use C style comments. Great catch!
> Shouldn't it be (sizeof("(none)") - 1)? It's the length of the data
> itself that we care about here, not counting the null terminator.
> [sizeof("(none)") == 7, right?]
> --Cliff
that complies with the fact that only one character was missing: '(none' was printed
out...
Guenter.