[PATCH] Fix more "if ((err = foo() < 0))" typos
authorAlexey Dobriyan <adobriyan@gmail.com>
Mon, 9 Jan 2006 21:09:16 +0000 (00:09 +0300)
committerLinus Torvalds <torvalds@g5.osdl.org>
Mon, 9 Jan 2006 21:02:51 +0000 (13:02 -0800)
commit682e852e2638ed0aff84aa51181c9e5d2f939562
treee1a5221fe0c98d743fbceec2d0932f3556aecf93
parent41ed16fa47350661da01443b8241bf6ca8080fd7
[PATCH] Fix more "if ((err = foo() < 0))" typos

Another reason to use:

ret = foo();
if (ret < 0)
goto out;

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Documentation/kprobes.txt
arch/mips/kernel/vpe.c
drivers/media/dvb/frontends/mt312.c