On Jul 20, 2007, at 3:15 AM, Ishizaki Kou wrote:
> Milton Miller <[EMAIL PROTECTED]> wrote:
>> On Jul 18, 2007, at 11:12 AM, Andreas Schwab wrote:
>>
>>> Milton Miller <[EMAIL PROTECTED]> writes:
>>>
> case '?':
> - printf(help_string);
> +
Milton Miller <[EMAIL PROTECTED]> wrote:
> On Jul 18, 2007, at 11:12 AM, Andreas Schwab wrote:
>
> > Milton Miller <[EMAIL PROTECTED]> writes:
> >
> >>> case '?':
> >>> - printf(help_string);
> >>> + xmon_puts(help_string);
> >>>
On Jul 18, 2007, at 11:12 AM, Andreas Schwab wrote:
> Milton Miller <[EMAIL PROTECTED]> writes:
>
>>> case '?':
>>> - printf(help_string);
>>> + xmon_puts(help_string);
>>> break;
>>>
>>
>> nonstdio.h #defines pri
Milton Miller <[EMAIL PROTECTED]> writes:
>> case '?':
>> - printf(help_string);
>> + xmon_puts(help_string);
>> break;
>>
>
> nonstdio.h #defines printf to xmon_printf. Please add a similar line
> for puts, and
On Wed Jul 18 19:26:40 EST 2007, Ishizaki Kou wrote:
> In some configuration, xmon help string is larger than xmon_printf
> buffer. We need not to use printf. This patch adds xmon_puts and
> change to use it to show help string.
[Since I'm requesting changes I'll suggest a new change log.]
In so
In some configuration, xmon help string is larger than xmon_printf
buffer. We need not to use printf. This patch adds xmon_puts and
change to use it to show help string.
Signed-off-by: Kou Ishizaki <[EMAIL PROTECTED]>
---
This patch depends on [PATCH 1/2].
Index: linux-powerpc-git/arch/powerpc