[PATCH] fix a couple of indentation issues and remove assignment in if statements

2019-01-16 Thread Colin King
From: Colin Ian King There is an if statement and a return statement that are incorrectly indented. Fix these. Also replace the assignment-in-if statements to assignment followed by an if to keep to the coding style. Signed-off-by: Colin Ian King --- V2: also clean up the assignment-in-if sta

Re: [PATCH] fix a couple of indentation issues and remove assignment in if statements

2019-01-16 Thread Colin Ian King
Bah, forgot to fix up the subject line properly. V3. Coming. On 17/01/2019 00:33, Colin King wrote: > From: Colin Ian King > > There is an if statement and a return statement that are incorrectly > indented. Fix these. Also replace the assignment-in-if statements > to assignment followed by an