16 Nov
2008
16 Nov
'08
7:58 p.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.