Re: [Intel-gfx] [PATCH i-g-t] igt_core: Fix logging to display extended line

2016-01-05 Thread Daniel Vetter
On Wed, Dec 23, 2015 at 03:34:48PM +, Derek Morton wrote: > line[strlen(line)] will always evaluate to NULL so line_continuation > was always true. That prevented the program name, pid and log level > ever being printed. > Changed to [strlen(line) - 1] so the last character before the null >

[Intel-gfx] [PATCH i-g-t] igt_core: Fix logging to display extended line

2015-12-23 Thread Derek Morton
line[strlen(line)] will always evaluate to NULL so line_continuation was always true. That prevented the program name, pid and log level ever being printed. Changed to [strlen(line) - 1] so the last character before the null terminator is compared with '\n' to determine line_continuation.