Re: [U-Boot] [PATCH] test: hexdump: fix misplaced return

2018-12-10 Thread Simon Glass
On Sun, 9 Dec 2018 at 13:53, Simon Goldschmidt wrote: > > Am 05.12.2018 um 13:55 schrieb Simon Glass: > > On Tue, 4 Dec 2018 at 13:30, Simon Goldschmidt > > wrote: > >> > >> One of the hexdump tests in test/lib/hexdump.c returns right at the > >> start of the function without testing anything. >

Re: [U-Boot] [PATCH] test: hexdump: fix misplaced return

2018-12-09 Thread Simon Goldschmidt
Am 05.12.2018 um 13:55 schrieb Simon Glass: On Tue, 4 Dec 2018 at 13:30, Simon Goldschmidt wrote: One of the hexdump tests in test/lib/hexdump.c returns right at the start of the function without testing anything. Fix this by moving the 'return 0;' statement to the end of the function.

Re: [U-Boot] [PATCH] test: hexdump: fix misplaced return

2018-12-05 Thread Simon Glass
On Tue, 4 Dec 2018 at 13:30, Simon Goldschmidt wrote: > > One of the hexdump tests in test/lib/hexdump.c returns right at the > start of the function without testing anything. > > Fix this by moving the 'return 0;' statement to the end of the function. > > Signed-off-by: Simon Goldschmidt > ---

[U-Boot] [PATCH] test: hexdump: fix misplaced return

2018-12-04 Thread Simon Goldschmidt
One of the hexdump tests in test/lib/hexdump.c returns right at the start of the function without testing anything. Fix this by moving the 'return 0;' statement to the end of the function. Signed-off-by: Simon Goldschmidt --- test/lib/hexdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2