Nov. 17, 2008
1:58 a.m.
"Vitaliy Margolen" <wine-devel(a)kievinfo.com> wrote:
In all of your patch:
+ if(!obj) return 0; Please add space after "if" to make it consistent and more readable: if (!obj) return 0;
Actually it would be better to either completely remove that line, or even do an assert(obj != NULL) instead IMO. -- Dmitry.