Re: [Xenomai-core] [Xenomai-git] Jan Kiszka : rt_print: Provide rt_puts

2011-07-31 Thread Gilles Chanteperdrix
On 07/31/2011 06:49 PM, GIT version control wrote: +int rt_puts(const char *s) +{ + return print_to_buffer(stdout, 0, RT_PRINT_MODE_PUTS, s, NULL); +} gcc for ARM chokes here: it says that NULL can not be converted to a va_list, however I try it. --

Re: [Xenomai-core] [Xenomai-git] Jan Kiszka : rt_print: Provide rt_puts

2011-07-31 Thread Jan Kiszka
On 2011-07-31 19:21, Gilles Chanteperdrix wrote: On 07/31/2011 06:49 PM, GIT version control wrote: +int rt_puts(const char *s) +{ +return print_to_buffer(stdout, 0, RT_PRINT_MODE_PUTS, s, NULL); +} gcc for ARM chokes here: it says that NULL can not be converted to a va_list, however

Re: [Xenomai-core] [Xenomai-git] Jan Kiszka : rt_print: Provide rt_puts

2011-07-31 Thread Gilles Chanteperdrix
On 07/31/2011 07:42 PM, Jan Kiszka wrote: On 2011-07-31 19:21, Gilles Chanteperdrix wrote: On 07/31/2011 06:49 PM, GIT version control wrote: +int rt_puts(const char *s) +{ + return print_to_buffer(stdout, 0, RT_PRINT_MODE_PUTS, s, NULL); +} gcc for ARM chokes here: it says that NULL can

Re: [Xenomai-core] [Xenomai-git] Jan Kiszka : rt_print: Provide rt_puts

2011-07-31 Thread Jan Kiszka
On 2011-07-31 19:46, Gilles Chanteperdrix wrote: On 07/31/2011 07:42 PM, Jan Kiszka wrote: On 2011-07-31 19:21, Gilles Chanteperdrix wrote: On 07/31/2011 06:49 PM, GIT version control wrote: +int rt_puts(const char *s) +{ + return print_to_buffer(stdout, 0, RT_PRINT_MODE_PUTS, s, NULL); +}