From: David M. <da...@da...> - 2019-11-21 06:14:11
|
From: Tuong Lien <tuo...@de...> Date: Thu, 21 Nov 2019 09:53:25 +0700 > +static inline int publication_after(struct publication *pa, > + struct publication *pb) > +{ > + return ((int)(pb->id - pa->id) < 0); > +} Juse use time32_after() et al. instead of reinventing the same exact code please. |