Re: [patch iproute2] jsonw: Fix indentation of ending "}"

2016-07-21 Thread Jiri Pirko
Wed, Jul 20, 2016 at 09:19:24PM CEST, step...@networkplumber.org wrote: >On Mon, 18 Jul 2016 09:51:17 +0200 >Jiri Pirko wrote: > >> From: Jiri Pirko >> >> Fix indentation of the very last "}" which is currently indented, >> leaving the last 2 "}" like this: >> \t} >> \t} >> EOF >> >> So fix it

Re: [patch iproute2] jsonw: Fix indentation of ending "}"

2016-07-20 Thread Stephen Hemminger
On Mon, 18 Jul 2016 09:51:17 +0200 Jiri Pirko wrote: > From: Jiri Pirko > > Fix indentation of the very last "}" which is currently indented, > leaving the last 2 "}" like this: > \t} > \t} > EOF > > So fix it to be: > \t} > } > EOF > > Fixes fcc16c2287 ("provide common json output formatter"

[patch iproute2] jsonw: Fix indentation of ending "}"

2016-07-18 Thread Jiri Pirko
From: Jiri Pirko Fix indentation of the very last "}" which is currently indented, leaving the last 2 "}" like this: \t} \t} EOF So fix it to be: \t} } EOF Fixes fcc16c2287 ("provide common json output formatter") Signed-off-by: Jiri Pirko --- lib/json_writer.c | 4 +++- 1 file changed, 3 ins