Hello! > On Thu, Nov 26, 2009 at 12:37:08AM +0100, Bernhard Walle wrote: > > Simon Horman schrieb: > > > + > > > + if ( NULL == p) > > > + return -1; > > > > Wouldn't that be better 'p == NULL'? > > Agreed That is form of 'early bug detection' of mistyped '=='. E.g. you can write by mistype if (p = NULL) {} but can't if (NULL = p) {} because you will get compiler error. -- Yuri Bushmelev