commit | 682e852e2638ed0aff84aa51181c9e5d2f939562 | [log] [tgz] |
---|---|---|
author | Alexey Dobriyan <adobriyan@gmail.com> | Tue Jan 10 00:09:16 2006 +0300 |
committer | Linus Torvalds <torvalds@g5.osdl.org> | Mon Jan 09 13:02:51 2006 -0800 |
tree | e1a5221fe0c98d743fbceec2d0932f3556aecf93 | |
parent | 41ed16fa47350661da01443b8241bf6ca8080fd7 [diff] |
[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>