Re: [PATCH wayland 1/6] scanner: Add missing brackets

2016-01-11 Thread Jonas Ådahl
On Mon, Jan 11, 2016 at 01:04:50PM -0600, Derek Foreman wrote: > On 28/12/15 08:10 PM, Jonas Ådahl wrote: > > A statement was added at the same indentation level as the true branch > > of the if statement, but since there were no brackets, it would be > > executed independently of the result of the

Re: [PATCH wayland 1/6] scanner: Add missing brackets

2016-01-11 Thread Derek Foreman
On 28/12/15 08:10 PM, Jonas Ådahl wrote: > A statement was added at the same indentation level as the true branch > of the if statement, but since there were no brackets, it would be > executed independently of the result of the if condition. > > Signed-off-by: Jonas Ådahl I'll throw my Reviewed

Re: [PATCH wayland 1/6] scanner: Add missing brackets

2015-12-29 Thread Daniel Stone
Hi Jonas, On 29 December 2015 at 02:10, Jonas Ådahl wrote: > A statement was added at the same indentation level as the true branch > of the if statement, but since there were no brackets, it would be > executed independently of the result of the if condition. > > Signed-off-by: Jonas Ådahl For

[PATCH wayland 1/6] scanner: Add missing brackets

2015-12-28 Thread Jonas Ådahl
A statement was added at the same indentation level as the true branch of the if statement, but since there were no brackets, it would be executed independently of the result of the if condition. Signed-off-by: Jonas Ådahl --- src/scanner.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)