Re: [PATCH 0/4] tools: iio: Send error messages to stderr

2015-07-07 Thread Daniel Baluta
On Tue, Jul 7, 2015 at 1:46 AM, Cristina Opriceana wrote: > This patchset indends to make some cleanup and send printf > error messages to stderr. > The changes were performed with coccinelle for failiure > messages and manual for other cases. The following script > was used: > > @r@ > expression

[PATCH 0/4] tools: iio: Send error messages to stderr

2015-07-06 Thread Cristina Opriceana
This patchset indends to make some cleanup and send printf error messages to stderr. The changes were performed with coccinelle for failiure messages and manual for other cases. The following script was used: @r@ expression e1, e2, stdout; @@ (printf(e1); | printf(e1, e2); | fprintf(stdout, e1); |